Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6ca6feb

Browse files
committed
skip right outer joins in pathman_join_pathlist_hook()
1 parent6280d4e commit6ca6feb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/hooks.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ pathman_join_pathlist_hook(PlannerInfo *root,
7070
if (!IsPathmanReady()|| !pg_pathman_enable_runtimeappend)
7171
return;
7272

73-
if (jointype==JOIN_FULL)
74-
return;/*handlingfulljoins is meaningless */
73+
if (jointype==JOIN_FULL||jointype==JOIN_RIGHT)
74+
return;/*we can't handlefullor right outer joins */
7575

7676
/* Check that innerrel is a BASEREL with inheritors & PartRelationInfo */
7777
if (innerrel->reloptkind!=RELOPT_BASEREL|| !inner_rte->inh||

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp