Skip to content

Commit 693209e

Browse files
committed
Run pgindent on pg_query_summary.c
The changes here were from prior bugfix commits.
1 parent 5e3e4a7 commit 693209e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/pg_query_summary.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,13 +140,13 @@ pg_query_summary_walk_impl(Node *node, WalkState * state)
140140
break;
141141
}
142142

143-
case T_CallStmt:
144-
{
145-
CallStmt *stmt = castNode(CallStmt, node);
143+
case T_CallStmt:
144+
{
145+
CallStmt *stmt = castNode(CallStmt, node);
146146

147-
if (stmt->funccall)
148-
return pg_query_summary_walk_impl((Node *) stmt->funccall, state);
149-
}
147+
if (stmt->funccall)
148+
return pg_query_summary_walk_impl((Node *) stmt->funccall, state);
149+
}
150150

151151
case T_SelectStmt:
152152
{
@@ -206,7 +206,7 @@ pg_query_summary_walk_impl(Node *node, WalkState * state)
206206

207207
case T_MergeStmt:
208208
{
209-
MergeStmt *stmt = castNode(MergeStmt, node);
209+
MergeStmt *stmt = castNode(MergeStmt, node);
210210

211211
add_range_var((Node *) stmt->relation, CONTEXT_DML, state);
212212
break;
@@ -832,7 +832,7 @@ summary_to_protobuf(PgQuerySummaryParseResult * result, Summary * summary)
832832
pfree(sr.filter_columns[i]);
833833
pfree(sr.filter_columns);
834834

835-
pfree (sr.truncated_query);
835+
pfree(sr.truncated_query);
836836
}
837837

838838
/*

0 commit comments

Comments
 (0)