summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/tsginidx.c
diff options
context:
space:
mode:
authorRobert Haas2016-05-03 14:52:25 +0000
committerRobert Haas2016-05-03 14:52:25 +0000
commit8826d850781cb328482c8f92af2a3d93385cd63b (patch)
tree4fe1529d761610370259c5c8e3eab74b869c956b /src/backend/utils/adt/tsginidx.c
parent1e77949e67b94af4d2a350c6dac9109419932608 (diff)
Tweak a few more things in preparation for upcoming pgindent run.
These adjustments adjust code and comments in minor ways to prevent pgindent from mangling them. Among other things, I tried to avoid situations where pgindent would emit "a +b" instead of "a + b", and I tried to avoid having it break up inline comments across multiple lines.
Diffstat (limited to 'src/backend/utils/adt/tsginidx.c')
-rw-r--r--src/backend/utils/adt/tsginidx.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/utils/adt/tsginidx.c b/src/backend/utils/adt/tsginidx.c
index 3f1e7f961f6..ebc11c9e4eb 100644
--- a/src/backend/utils/adt/tsginidx.c
+++ b/src/backend/utils/adt/tsginidx.c
@@ -222,9 +222,10 @@ TS_execute_ternary(GinChkVal *gcv, QueryItem *curitem)
check_stack_depth();
if (curitem->type == QI_VAL)
- return checkcondition_gin_internal(gcv,
- (QueryOperand *) curitem,
- NULL /* don't have any position info */);
+ return
+ checkcondition_gin_internal(gcv,
+ (QueryOperand *) curitem,
+ NULL /* don't have position info */ );
switch (curitem->qoperator.oper)
{