diff options
Diffstat (limited to 'src/backend/parser')
-rw-r--r-- | src/backend/parser/analyze.c | 2 | ||||
-rw-r--r-- | src/backend/parser/gram.y | 2 | ||||
-rw-r--r-- | src/backend/parser/parse_target.c | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index b13c2461835..345a8e61977 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -2082,7 +2082,7 @@ transformSetOperationTree(ParseState *pstate, SelectStmt *stmt, * Select common collation. A common collation is required for * all set operators except UNION ALL; see SQL:2008 7.13 <query * expression> Syntax Rule 15c. (If we fail to identify a common - * collation for a UNION ALL column, the curCollations element + * collation for a UNION ALL column, the colCollations element * will be set to InvalidOid, which may result in a runtime error * if something at a higher query level wants to use the column's * collation.) diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index 8311b1dd467..208b4a1f28a 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -12542,7 +12542,7 @@ SimpleTypename: * Note that ConstInterval is not included here since it must * be pushed up higher in the rules to accommodate the postfix * options (e.g. INTERVAL '1' YEAR). Likewise, we have to handle - * the generic-type-name case in AExprConst to avoid premature + * the generic-type-name case in AexprConst to avoid premature * reduce/reduce conflicts against function names. */ ConstTypename: diff --git a/src/backend/parser/parse_target.c b/src/backend/parser/parse_target.c index ba470366e10..b70d92b9550 100644 --- a/src/backend/parser/parse_target.c +++ b/src/backend/parser/parse_target.c @@ -695,9 +695,9 @@ transformAssignmentIndirection(ParseState *pstate, /* * Set up a substitution. We abuse CaseTestExpr for this. It's safe * to do so because the only nodes that will be above the CaseTestExpr - * in the finished expression will be FieldStore and ArrayRef nodes. - * (There could be other stuff in the tree, but it will be within - * other child fields of those node types.) + * in the finished expression will be FieldStore and SubscriptingRef + * nodes. (There could be other stuff in the tree, but it will be + * within other child fields of those node types.) */ CaseTestExpr *ctest = makeNode(CaseTestExpr); |