Re: Unmatched test and comment in partition_join.sql regression test

2019-12-16 Thread Etsuro Fujita
On Fri, Dec 13, 2019 at 7:17 PM Etsuro Fujita wrote: > I noticed this in the regression test while polishing the PWJ-enhancement > patch: > > -- partitionwise join can not be applied for a join between list and range > -- partitioned tables > EXPLAIN (COSTS OFF) > SELECT t1.a, t1.c, t2.b, t2.c FR

Unmatched test and comment in partition_join.sql regression test

2019-12-13 Thread Etsuro Fujita
I noticed this in the regression test while polishing the PWJ-enhancement patch: -- partitionwise join can not be applied for a join between list and range -- partitioned tables EXPLAIN (COSTS OFF) SELECT t1.a, t1.c, t2.b, t2.c FROM prt1_n t1 FULL JOIN prt1 t2 ON (t1.c = t2.c); The test doesn't m