Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
eb0d00a9
Commit
eb0d00a9
authored
20 years ago
by
Neil Conway
Browse files
Options
Downloads
Patches
Plain Diff
Various style cleanups for GiST; no changes to functionality.
parent
c9a382b2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/access/gist/gist.c
+31
-35
31 additions, 35 deletions
src/backend/access/gist/gist.c
with
31 additions
and
35 deletions
src/backend/access/gist/gist.c
+
31
−
35
View file @
eb0d00a9
...
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/gist/gist.c,v 1.11
4
2005/05/1
1
0
6:24:50
neilc Exp $
* $PostgreSQL: pgsql/src/backend/access/gist/gist.c,v 1.11
5
2005/05/1
5
0
4:08:29
neilc Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -87,8 +87,7 @@ static OffsetNumber gistwritebuffer(Relation r,
IndexTuple
*
itup
,
int
len
,
OffsetNumber
off
);
static
int
gistnospace
(
Page
page
,
IndexTuple
*
itvec
,
int
len
);
static
bool
gistnospace
(
Page
page
,
IndexTuple
*
itvec
,
int
len
);
static
IndexTuple
*
gistreadbuffer
(
Buffer
buffer
,
int
*
len
);
static
IndexTuple
*
gistjoinvector
(
IndexTuple
*
itvec
,
int
*
len
,
...
...
@@ -107,14 +106,13 @@ static void gistadjsubkey(Relation r,
GIST_SPLITVEC
*
v
,
GISTSTATE
*
giststate
);
static
IndexTuple
gistFormTuple
(
GISTSTATE
*
giststate
,
Relation
r
,
Datum
attdata
[]
,
int
datumsize
[]
,
bool
isnull
[]
);
Relation
r
,
Datum
*
attdata
,
int
*
datumsize
,
bool
*
isnull
);
static
IndexTuple
*
gistSplit
(
Relation
r
,
Buffer
buffer
,
IndexTuple
*
itup
,
int
*
len
,
GISTSTATE
*
giststate
);
static
void
gistnewroot
(
Relation
r
,
IndexTuple
*
itup
,
int
len
);
static
void
gistnewroot
(
Relation
r
,
IndexTuple
*
itup
,
int
len
);
static
void
GISTInitBuffer
(
Buffer
b
,
uint32
f
);
static
OffsetNumber
gistchoose
(
Relation
r
,
Page
p
,
IndexTuple
it
,
...
...
@@ -131,8 +129,8 @@ static void gistcentryinit(GISTSTATE *giststate, int nkey,
OffsetNumber
o
,
int
b
,
bool
l
,
bool
isNull
);
static
void
gistDeCompressAtt
(
GISTSTATE
*
giststate
,
Relation
r
,
IndexTuple
tuple
,
Page
p
,
OffsetNumber
o
,
GISTENTRY
attdata
[]
,
bool
decompvec
[]
,
bool
isnull
[]
);
static
void
gistFreeAtt
(
Relation
r
,
GISTENTRY
attdata
[]
,
bool
decompvec
[]
);
GISTENTRY
*
attdata
,
bool
*
decompvec
,
bool
*
isnull
);
static
void
gistFreeAtt
(
Relation
r
,
GISTENTRY
*
attdata
,
bool
*
decompvec
);
static
void
gistpenalty
(
GISTSTATE
*
giststate
,
int
attno
,
GISTENTRY
*
key1
,
bool
isNull1
,
GISTENTRY
*
key2
,
bool
isNull2
,
...
...
@@ -503,7 +501,7 @@ gistlayerinsert(Relation r, BlockNumber blkno,
}
else
{
/* enog
t
h space */
/* eno
u
gh space */
OffsetNumber
off
,
l
;
...
...
@@ -577,7 +575,7 @@ gistwritebuffer(Relation r, Page page, IndexTuple *itup,
/*
* Check space for itup vector on page
*/
static
int
static
bool
gistnospace
(
Page
page
,
IndexTuple
*
itvec
,
int
len
)
{
unsigned
int
size
=
0
;
...
...
@@ -934,7 +932,7 @@ gistunionsubkey(Relation r, GISTSTATE *giststate, IndexTuple *itvec, GIST_SPLITV
}
/*
* find group in vector with equ
i
al value
* find group in vector with equal value
*/
static
int
gistfindgroup
(
GISTSTATE
*
giststate
,
GISTENTRY
*
valvec
,
GIST_SPLITVEC
*
spl
)
...
...
@@ -949,7 +947,6 @@ gistfindgroup(GISTSTATE *giststate, GISTENTRY *valvec, GIST_SPLITVEC *spl)
* first key is always not null (see gistinsert), so we may not check
* for nulls
*/
for
(
i
=
0
;
i
<
spl
->
spl_nleft
;
i
++
)
{
if
(
spl
->
spl_idgrp
[
spl
->
spl_left
[
i
]])
...
...
@@ -1007,8 +1004,7 @@ gistadjsubkey(Relation r,
IndexTuple
*
itup
,
/* contains compressed entry */
int
*
len
,
GIST_SPLITVEC
*
v
,
GISTSTATE
*
giststate
)
GISTSTATE
*
giststate
)
{
int
curlen
;
OffsetNumber
*
curwpos
;
...
...
@@ -1400,7 +1396,7 @@ GISTInitBuffer(Buffer b, uint32 f)
/*
*
* find entry with lowest penalty
* find entry with lowest penalty
*/
static
OffsetNumber
gistchoose
(
Relation
r
,
Page
p
,
IndexTuple
it
,
/* it has compressed entry */
...
...
@@ -1643,11 +1639,11 @@ freeGISTstate(GISTSTATE *giststate)
#ifdef GIST_PAGEADDITEM
/*
*
* Given an IndexTuple to be inserted on a page, this routine replaces
*
* the key with another key, which may involve generating a new IndexTuple
*
* if the sizes don't match or if the null status changes.
*
*
*
* XXX this only works for a single-column index tuple!
* Given an IndexTuple to be inserted on a page, this routine replaces
* the key with another key, which may involve generating a new IndexTuple
* if the sizes don't match or if the null status changes.
*
* XXX this only works for a single-column index tuple!
*/
static
IndexTuple
gist_tuple_replacekey
(
Relation
r
,
GISTENTRY
entry
,
IndexTuple
t
)
...
...
@@ -1690,7 +1686,7 @@ gist_tuple_replacekey(Relation r, GISTENTRY entry, IndexTuple t)
#endif
/*
*
* initialize a GiST entry with a decompressed version of key
* initialize a GiST entry with a decompressed version of key
*/
void
gistdentryinit
(
GISTSTATE
*
giststate
,
int
nkey
,
GISTENTRY
*
e
,
...
...
@@ -1719,7 +1715,7 @@ gistdentryinit(GISTSTATE *giststate, int nkey, GISTENTRY *e,
/*
*
* initialize a GiST entry with a compressed version of key
* initialize a GiST entry with a compressed version of key
*/
static
void
gistcentryinit
(
GISTSTATE
*
giststate
,
int
nkey
,
...
...
@@ -1790,7 +1786,7 @@ gistFormTuple(GISTSTATE *giststate, Relation r,
static
void
gistDeCompressAtt
(
GISTSTATE
*
giststate
,
Relation
r
,
IndexTuple
tuple
,
Page
p
,
OffsetNumber
o
,
GISTENTRY
attdata
[]
,
bool
decompvec
[]
,
bool
isnull
[]
)
OffsetNumber
o
,
GISTENTRY
*
attdata
,
bool
*
decompvec
,
bool
*
isnull
)
{
int
i
;
Datum
datum
;
...
...
@@ -1814,7 +1810,7 @@ gistDeCompressAtt(GISTSTATE *giststate, Relation r, IndexTuple tuple, Page p,
}
static
void
gistFreeAtt
(
Relation
r
,
GISTENTRY
attdata
[]
,
bool
decompvec
[]
)
gistFreeAtt
(
Relation
r
,
GISTENTRY
*
attdata
,
bool
*
decompvec
)
{
int
i
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment