mirror of https://github.com/citusdata/citus.git
Updates F_ARRAY_UNNEST to F_UNNEST_ANYARRAY in ruleutils_14.c
Relevant PG commit: 8e1f37c07aafd4bb7aa6e1e1982010af11f8b5c7pull/5209/head
parent
30f77b29a7
commit
b4f76303c6
|
@ -7134,7 +7134,7 @@ get_from_clause_item(Node *jtnode, Query *query, deparse_context *context)
|
||||||
RangeTblFunction *rtfunc = (RangeTblFunction *) lfirst(lc);
|
RangeTblFunction *rtfunc = (RangeTblFunction *) lfirst(lc);
|
||||||
|
|
||||||
if (!IsA(rtfunc->funcexpr, FuncExpr) ||
|
if (!IsA(rtfunc->funcexpr, FuncExpr) ||
|
||||||
((FuncExpr *) rtfunc->funcexpr)->funcid != F_ARRAY_UNNEST ||
|
((FuncExpr *) rtfunc->funcexpr)->funcid != F_UNNEST_ANYARRAY ||
|
||||||
rtfunc->funccolnames != NIL)
|
rtfunc->funccolnames != NIL)
|
||||||
{
|
{
|
||||||
all_unnest = false;
|
all_unnest = false;
|
||||||
|
|
Loading…
Reference in New Issue