We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6280d4e commit 6ca6febCopy full SHA for 6ca6feb
src/hooks.c
@@ -70,8 +70,8 @@ pathman_join_pathlist_hook(PlannerInfo *root,
70
if (!IsPathmanReady() || !pg_pathman_enable_runtimeappend)
71
return;
72
73
- if (jointype == JOIN_FULL)
74
- return; /* handling full joins is meaningless */
+ if (jointype == JOIN_FULL || jointype == JOIN_RIGHT)
+ return; /* we can't handle full or right outer joins */
75
76
/* Check that innerrel is a BASEREL with inheritors & PartRelationInfo */
77
if (innerrel->reloptkind != RELOPT_BASEREL || !inner_rte->inh ||
0 commit comments