aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execMain.c
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2017-05-09 23:40:08 -0400
committerRobert Haas <rhaas@postgresql.org>2017-05-09 23:40:08 -0400
commitdf1a4eba948f386845f75c2864de0a35e5ede849 (patch)
tree43d6346b5d781ad41d11188c70d1fcf8ff608dcc /src/backend/executor/execMain.c
parent9e6104c6672dc948a430d1ee269b0c31bf5bc974 (diff)
downloadpostgresql-df1a4eba948f386845f75c2864de0a35e5ede849.tar.gz
postgresql-df1a4eba948f386845f75c2864de0a35e5ede849.zip
Fix typos in comments.
Etsuro Fujita Discussion: http://postgr.es/m/968d99bf-0fa8-085b-f0a1-a379f8d661ff@lab.ntt.co.jp
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r--src/backend/executor/execMain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c
index cdb1a6a5f5d..2535d2ee695 100644
--- a/src/backend/executor/execMain.c
+++ b/src/backend/executor/execMain.c
@@ -1340,9 +1340,9 @@ InitResultRelInfo(ResultRelInfo *resultRelInfo,
/*
* If partition_root has been specified, that means we are building the
- * ResultRelationInfo for one of its leaf partitions. In that case, we
- * need *not* initialize the leaf partition's constraint, but rather the
- * the partition_root's (if any). We must do that explicitly like this,
+ * ResultRelInfo for one of its leaf partitions. In that case, we need
+ * *not* initialize the leaf partition's constraint, but rather the
+ * partition_root's (if any). We must do that explicitly like this,
* because implicit partition constraints are not inherited like user-
* defined constraints and would fail to be enforced by ExecConstraints()
* after a tuple is routed to a leaf partition.