diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-26 14:47:16 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-04-26 14:47:16 -0400 |
commit | bdf46af748d0f15f257c99bf06e9e25aba6a24f9 (patch) | |
tree | 3637d69ad413fdc23098cc2cf94b2cd57fd44dab /src/backend/access/gin/gininsert.c | |
parent | f83bf385c1dad4964e0d899174989a1668536182 (diff) | |
download | postgresql-bdf46af748d0f15f257c99bf06e9e25aba6a24f9.tar.gz postgresql-bdf46af748d0f15f257c99bf06e9e25aba6a24f9.zip |
Post-feature-freeze pgindent run.
Discussion: https://postgr.es/m/15719.1523984266@sss.pgh.pa.us
Diffstat (limited to 'src/backend/access/gin/gininsert.c')
-rw-r--r-- | src/backend/access/gin/gininsert.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/access/gin/gininsert.c b/src/backend/access/gin/gininsert.c index ec5eebb8484..cf218dd75d4 100644 --- a/src/backend/access/gin/gininsert.c +++ b/src/backend/access/gin/gininsert.c @@ -519,12 +519,12 @@ gininsert(Relation index, Datum *values, bool *isnull, /* * With fastupdate on each scan and each insert begin with access to - * pending list, so it effectively lock entire index. In this case - * we aquire predicate lock and check for conflicts over index relation, + * pending list, so it effectively lock entire index. In this case we + * aquire predicate lock and check for conflicts over index relation, * and hope that it will reduce locking overhead. * - * Do not use GinCheckForSerializableConflictIn() here, because - * it will do nothing (it does actual work only with fastupdate off). + * Do not use GinCheckForSerializableConflictIn() here, because it + * will do nothing (it does actual work only with fastupdate off). * Check for conflicts for entire index. */ CheckForSerializableConflictIn(index, NULL, InvalidBuffer); @@ -539,7 +539,7 @@ gininsert(Relation index, Datum *values, bool *isnull, } else { - GinStatsData stats; + GinStatsData stats; /* * Fastupdate is off but if pending list isn't empty then we need to |