diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-08-19 14:12:16 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-08-19 14:12:16 -0400 |
commit | 092d7ded29f36b0539046b23b81b9f0bf2d637f1 (patch) | |
tree | 9d42dc496cf768b95fafd903f01bb9ee9dbd9b73 /src/include/parser/parse_relation.h | |
parent | c246eb5aafe66d5537b468d6da2116c462775faf (diff) |
Allow OLD and NEW in multi-row VALUES within rules.
Now that we have LATERAL, it's fairly painless to allow this case, which
was left as a TODO in the original multi-row VALUES implementation.
Diffstat (limited to 'src/include/parser/parse_relation.h')
-rw-r--r-- | src/include/parser/parse_relation.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/parser/parse_relation.h b/src/include/parser/parse_relation.h index ba99fc2d8a3..4b3779bdc68 100644 --- a/src/include/parser/parse_relation.h +++ b/src/include/parser/parse_relation.h @@ -67,6 +67,7 @@ extern RangeTblEntry *addRangeTableEntryForValues(ParseState *pstate, List *exprs, List *collations, Alias *alias, + bool lateral, bool inFromCl); extern RangeTblEntry *addRangeTableEntryForJoin(ParseState *pstate, List *colnames, |