From: Pavan Deolasee Date: Thu, 25 Oct 2018 09:05:27 +0000 (+0530) Subject: Allow RECURSIVE queries on function scans X-Git-Tag: XL_10_R1 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=90ec0775b34fc85b2b32fe674ae852f9e0b1b18d;p=postgres-xl.git Allow RECURSIVE queries on function scans --- 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: {