aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/gist/gistbuild.c
diff options
context:
space:
mode:
authorStephen Frost <sfrost@snowman.net>2013-06-01 09:38:15 -0400
committerStephen Frost <sfrost@snowman.net>2013-06-01 09:38:15 -0400
commit551938ae2284975b53d665fa8a82a7e1f3514dda (patch)
tree14ceecfcc9413f1b3366393227b2604bf02e2bf1 /src/backend/access/gist/gistbuild.c
parentdedf7e9919a2dc42370c0b218728e1556985de6a (diff)
downloadpostgresql-551938ae2284975b53d665fa8a82a7e1f3514dda.tar.gz
postgresql-551938ae2284975b53d665fa8a82a7e1f3514dda.zip
Post-pgindent cleanup
Make slightly better decisions about indentation than what pgindent is capable of. Mostly breaking out long function calls into one line per argument, with a few other minor adjustments. No functional changes- all whitespace. pgindent ran cleanly (didn't change anything) after. Passes all regressions.
Diffstat (limited to 'src/backend/access/gist/gistbuild.c')
-rw-r--r--src/backend/access/gist/gistbuild.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/backend/access/gist/gistbuild.c b/src/backend/access/gist/gistbuild.c
index 2f2edb83626..bf9d2e75140 100644
--- a/src/backend/access/gist/gistbuild.c
+++ b/src/backend/access/gist/gistbuild.c
@@ -610,9 +610,14 @@ gistProcessItup(GISTBuildState *buildstate, IndexTuple itup,
newtup = gistgetadjusted(indexrel, idxtuple, itup, giststate);
if (newtup)
{
- blkno = gistbufferinginserttuples(buildstate, buffer, level,
- &newtup, 1, childoffnum,
- InvalidBlockNumber, InvalidOffsetNumber);
+ blkno = gistbufferinginserttuples(buildstate,
+ buffer,
+ level,
+ &newtup,
+ 1,
+ childoffnum,
+ InvalidBlockNumber,
+ InvalidOffsetNumber);
/* gistbufferinginserttuples() released the buffer */
}
else