mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
pgindent run for 9.4
This includes removing tabs after periods in C comments, which was applied to back branches, so this change should not effect backpatching.
This commit is contained in:
@ -163,7 +163,7 @@ spgbuildempty(PG_FUNCTION_ARGS)
|
||||
page = (Page) palloc(BLCKSZ);
|
||||
SpGistInitMetapage(page);
|
||||
|
||||
/* Write the page. If archiving/streaming, XLOG it. */
|
||||
/* Write the page. If archiving/streaming, XLOG it. */
|
||||
PageSetChecksumInplace(page, SPGIST_METAPAGE_BLKNO);
|
||||
smgrwrite(index->rd_smgr, INIT_FORKNUM, SPGIST_METAPAGE_BLKNO,
|
||||
(char *) page, true);
|
||||
@ -232,7 +232,7 @@ spginsert(PG_FUNCTION_ARGS)
|
||||
/*
|
||||
* We might have to repeat spgdoinsert() multiple times, if conflicts
|
||||
* occur with concurrent insertions. If so, reset the insertCtx each time
|
||||
* to avoid cumulative memory consumption. That means we also have to
|
||||
* to avoid cumulative memory consumption. That means we also have to
|
||||
* redo initSpGistState(), but it's cheap enough not to matter.
|
||||
*/
|
||||
while (!spgdoinsert(index, &spgstate, ht_ctid, *values, *isnull))
|
||||
|
Reference in New Issue
Block a user