Re: pgsql: Re-allow FDWs and custom scan providers to replace joins with ps

2023-08-15 Thread Etsuro Fujita
I CCed Andrew. On Tue, Aug 15, 2023 at 4:50 PM Etsuro Fujita wrote: > Re-allow FDWs and custom scan providers to replace joins with pseudoconstant > quals. This broke blackhole_fdw, which is tested in buildfarm member crake, because it changed the argument list for create_foreignscan_path(), as

pgsql: Re-allow FDWs and custom scan providers to replace joins with ps

2023-08-15 Thread Etsuro Fujita
Re-allow FDWs and custom scan providers to replace joins with pseudoconstant quals. This was disabled in commit 6f80a8d9c due to the lack of support for handling of pseudoconstant quals assigned to replaced joins in createplan.c. To re-allow it, this patch adds the support by 1) modifying the Fo