mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
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.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user