aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2019-07-01 12:37:52 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2019-07-01 12:37:52 -0400
commit9e1c9f959422192bbe1b842a2a1ffaf76b080196 (patch)
treecf36bf712b6baf5c0fa86e3854bbcfaf3829b00f /src/backend/executor
parent145b18688c04963efcab8ef3e7e10659bf783eb1 (diff)
downloadpostgresql-9e1c9f959422192bbe1b842a2a1ffaf76b080196.tar.gz
postgresql-9e1c9f959422192bbe1b842a2a1ffaf76b080196.zip
pgindent run prior to branching v12.
pgperltidy and reformat-dat-files too, though the latter didn't find anything to change.
Diffstat (limited to 'src/backend/executor')
-rw-r--r--src/backend/executor/nodeIndexonlyscan.c5
-rw-r--r--src/backend/executor/nodeModifyTable.c4
2 files changed, 4 insertions, 5 deletions
diff --git a/src/backend/executor/nodeIndexonlyscan.c b/src/backend/executor/nodeIndexonlyscan.c
index f0f8fa210ba..652a9afc752 100644
--- a/src/backend/executor/nodeIndexonlyscan.c
+++ b/src/backend/executor/nodeIndexonlyscan.c
@@ -528,9 +528,8 @@ ExecInitIndexOnlyScan(IndexOnlyScan *node, EState *estate, int eflags)
&TTSOpsVirtual);
/*
- * We need another slot, in a format that's suitable for the table AM,
- * for when we need to fetch a tuple from the table for rechecking
- * visibility.
+ * We need another slot, in a format that's suitable for the table AM, for
+ * when we need to fetch a tuple from the table for rechecking visibility.
*/
indexstate->ioss_TableSlot =
ExecAllocTableSlot(&estate->es_tupleTable,
diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c
index 24ed3718eff..d8b695d897f 100644
--- a/src/backend/executor/nodeModifyTable.c
+++ b/src/backend/executor/nodeModifyTable.c
@@ -2317,8 +2317,8 @@ ExecInitModifyTable(ModifyTable *node, EState *estate, int eflags)
* indexes for insertion of new index entries. Note we *must* set
* estate->es_result_relation_info correctly while we initialize each
* sub-plan; external modules such as FDWs may depend on that (see
- * contrib/postgres_fdw/postgres_fdw.c: postgresBeginDirectModify()
- * as one example).
+ * contrib/postgres_fdw/postgres_fdw.c: postgresBeginDirectModify() as one
+ * example).
*/
saved_resultRelInfo = estate->es_result_relation_info;