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/equalfuncs.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/equalfuncs.c')
-rw-r--r-- | src/backend/nodes/equalfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/nodes/equalfuncs.c b/src/backend/nodes/equalfuncs.c index 1f9b5d70f55..6188114060f 100644 --- a/src/backend/nodes/equalfuncs.c +++ b/src/backend/nodes/equalfuncs.c @@ -2142,7 +2142,7 @@ _equalRangeFunction(const RangeFunction *a, const RangeFunction *b) { COMPARE_SCALAR_FIELD(lateral); COMPARE_SCALAR_FIELD(ordinality); - COMPARE_SCALAR_FIELD(is_table); + COMPARE_SCALAR_FIELD(is_rowsfrom); COMPARE_NODE_FIELD(functions); COMPARE_NODE_FIELD(alias); COMPARE_NODE_FIELD(coldeflist); |