diff options
author | Pavan Deolasee | 2018-10-25 09:05:27 +0000 |
---|---|---|
committer | Pavan Deolasee | 2018-10-25 09:05:27 +0000 |
commit | 90ec0775b34fc85b2b32fe674ae852f9e0b1b18d (patch) | |
tree | 8c75e8a2e333dea6ce8424788b0bc97e84abc3d8 | |
parent | bcc42ad2e0487fc4d1e2e5e0d8ef56c91b2fcb90 (diff) |
Allow RECURSIVE queries on function scansXL_10_R1
-rw-r--r-- | src/backend/optimizer/plan/planner.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/optimizer/plan/planner.c b/src/backend/optimizer/plan/planner.c index 93b275bd79..8b42ff84d3 100644 --- a/src/backend/optimizer/plan/planner.c +++ b/src/backend/optimizer/plan/planner.c @@ -968,6 +968,7 @@ subquery_planner(PlannerGlobal *glob, Query *parse, case RTE_JOIN: case RTE_VALUES: case RTE_CTE: + case RTE_FUNCTION: continue; case RTE_RELATION: { |