diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2018-06-30 12:25:49 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2018-06-30 12:25:49 -0400 |
commit | 1e9c8580904625576871eeb2efec7f04d4c3bc1c (patch) | |
tree | 6093afd9440b732c2b4f2c040b7a3e83b6f163ae /src/backend/access/gin | |
parent | 2c64d200484c40c1bfbd532bf140bea672f267a1 (diff) | |
download | postgresql-1e9c8580904625576871eeb2efec7f04d4c3bc1c.tar.gz postgresql-1e9c8580904625576871eeb2efec7f04d4c3bc1c.zip |
pgindent run prior to branching
Diffstat (limited to 'src/backend/access/gin')
-rw-r--r-- | src/backend/access/gin/ginfast.c | 6 | ||||
-rw-r--r-- | src/backend/access/gin/ginget.c | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/access/gin/ginfast.c b/src/backend/access/gin/ginfast.c index 5f624cf6fac..e32807e62ac 100644 --- a/src/backend/access/gin/ginfast.c +++ b/src/backend/access/gin/ginfast.c @@ -247,9 +247,9 @@ ginHeapTupleFastInsert(GinState *ginstate, GinTupleCollector *collector) metapage = BufferGetPage(metabuffer); /* - * An insertion to the pending list could logically belong anywhere in - * the tree, so it conflicts with all serializable scans. All scans - * acquire a predicate lock on the metabuffer to represent that. + * An insertion to the pending list could logically belong anywhere in the + * tree, so it conflicts with all serializable scans. All scans acquire a + * predicate lock on the metabuffer to represent that. */ CheckForSerializableConflictIn(index, NULL, metabuffer); diff --git a/src/backend/access/gin/ginget.c b/src/backend/access/gin/ginget.c index ef3cd7dbe2a..8466d947eab 100644 --- a/src/backend/access/gin/ginget.c +++ b/src/backend/access/gin/ginget.c @@ -235,8 +235,8 @@ collectMatchBitmap(GinBtreeData *btree, GinBtreeStack *stack, LockBuffer(stack->buffer, GIN_UNLOCK); /* - * Acquire predicate lock on the posting tree. We already hold - * a lock on the entry page, but insertions to the posting tree + * Acquire predicate lock on the posting tree. We already hold a + * lock on the entry page, but insertions to the posting tree * don't check for conflicts on that level. */ PredicateLockPage(btree->index, rootPostingTree, snapshot); @@ -1766,8 +1766,8 @@ scanPendingInsert(IndexScanDesc scan, TIDBitmap *tbm, int64 *ntids) *ntids = 0; /* - * Acquire predicate lock on the metapage, to conflict with any - * fastupdate insertions. + * Acquire predicate lock on the metapage, to conflict with any fastupdate + * insertions. */ PredicateLockPage(scan->indexRelation, GIN_METAPAGE_BLKNO, scan->xs_snapshot); |