Skip to content

Commit 9e5f1ea

Browse files
committed
Disable pathman for SELECT FOR SHARE/UPDATE clauses on 9.5.
Noticed after ba30201 subpartitions test failed on 9.5.
1 parent 43fd918 commit 9e5f1ea

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/hooks.c

+9
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,15 @@ pathman_rel_pathlist_hook(PlannerInfo *root,
352352
if (root->parse->commandType != CMD_SELECT &&
353353
root->parse->commandType != CMD_INSERT)
354354
return;
355+
356+
/* SELECT FOR SHARE/UPDATE is not handled by above check */
357+
foreach(lc, root->rowMarks)
358+
{
359+
PlanRowMark *rc = (PlanRowMark *) lfirst(lc);
360+
361+
if (rc->rti == rti)
362+
return;
363+
}
355364
#endif
356365

357366
/* Skip if this table is not allowed to act as parent (e.g. FROM ONLY) */

0 commit comments

Comments
 (0)