Re: Getting "ERROR: did not find all requested child rels in append_rel_list" when enable_partition_pruning is on

2018-06-15 Thread Amit Langote
On 2018/06/15 16:32, Rajkumar Raghuwanshi wrote: > Hi, > > I am getting "ERROR: did not find all requested child rels in > append_rel_list" when enable_partition_pruning is on for below test case. > > CREATE TABLE test(c1 int, c2 int) PARTITION BY RANGE(c1); > CR

Getting "ERROR: did not find all requested child rels in append_rel_list" when enable_partition_pruning is on

2018-06-15 Thread Rajkumar Raghuwanshi
Hi, I am getting "ERROR: did not find all requested child rels in append_rel_list" when enable_partition_pruning is on for below test case. CREATE TABLE test(c1 int, c2 int) PARTITION BY RANGE(c1); CREATE TABLE test_p1 PARTITION OF test FOR VALUES FROM (minvalue) TO (0); CREATE TAB