Commit
e26a0e07d8 started ignoring distributions defined on partitions,
but omitted this place in 'rules' when accepting the warnings.
--
create temp table t1 (a integer primary key) distribute by replication;
create temp table t1_1 (check (a >= 0 and a < 10)) inherits (t1) distribute by replication;
+WARNING: Inherited/partition tables inherit distribution from the parent
+DETAIL: Explicitly specified distribution will be ignored
create temp table t1_2 (check (a >= 10 and a < 20)) inherits (t1) distribute by replication;
+WARNING: Inherited/partition tables inherit distribution from the parent
+DETAIL: Explicitly specified distribution will be ignored
create rule t1_ins_1 as on insert to t1
where new.a >= 0 and new.a < 10
do instead