diff options
author | Heikki Linnakangas | 2018-04-09 11:20:13 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2018-04-09 11:20:13 +0000 |
commit | 2c19ea863a27303f462485c4046a850864e638b8 (patch) | |
tree | 47d6434b36ad603e85ad4584880e429a615cf823 | |
parent | 1671c01650d2cf9398b2e5ff87be2e2fd03781b7 (diff) |
Fix typo in comment.
Author: Kyotaro Horiguchi
-rw-r--r-- | src/backend/rewrite/rewriteManip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/rewrite/rewriteManip.c b/src/backend/rewrite/rewriteManip.c index abad1bf7e4..f1f4212b5d 100644 --- a/src/backend/rewrite/rewriteManip.c +++ b/src/backend/rewrite/rewriteManip.c @@ -1205,7 +1205,7 @@ replace_rte_variables_mutator(Node *node, * If the expression tree contains a whole-row Var for the target RTE, * *found_whole_row is set to true. In addition, if to_rowtype is * not InvalidOid, we replace the Var with a Var of that vartype, inserting - * a ConvertRowTypeExpr to map back to the rowtype expected by the expression. + * a ConvertRowtypeExpr to map back to the rowtype expected by the expression. * (Therefore, to_rowtype had better be a child rowtype of the rowtype of the * RTE we're changing references to.) Callers that don't provide to_rowtype * should report an error if *found_row_type is true; we don't do that here |