diff options
author | Noah Misch <noah@leadboat.com> | 2013-12-10 09:34:37 -0500 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2013-12-10 09:34:37 -0500 |
commit | 53685d79813a46c7e3a46ae4b1210f608d41d6ab (patch) | |
tree | 8760f628f2d5baf874307624248f92e80475d9ca /src/backend/nodes/copyfuncs.c | |
parent | 01cc1fecfdecc37649b3996100ab1f03ccc8ab7e (diff) |
Rename TABLE() to ROWS FROM().
SQL-standard TABLE() is a subset of UNNEST(); they deal with arrays and
other collection types. This feature, however, deals with set-returning
functions. Use a different syntax for this feature to keep open the
possibility of implementing the standard TABLE().
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index e3edcf6f74f..cd8a11b8d5d 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -2310,7 +2310,7 @@ _copyRangeFunction(const RangeFunction *from) COPY_SCALAR_FIELD(lateral); COPY_SCALAR_FIELD(ordinality); - COPY_SCALAR_FIELD(is_table); + COPY_SCALAR_FIELD(is_rowsfrom); COPY_NODE_FIELD(functions); COPY_NODE_FIELD(alias); COPY_NODE_FIELD(coldeflist); |