-- Cloudberry cluster with 4 segments
-- Greenplum cluster with 4 segments
create table tab_replicated(a int, b int, c int) distributed replicated;
insert into tab_replicated select i, i, i from generate_series(1, 100) i;
copy tab_replicated to '/home/cbdb/tab_replicated_<SEGID>.txt' on segment;
-- Greenplum: COPY 400 | Cloudberry: COPY 400
create table tab_replicated_new(a int, b int, c int) distributed replicated;
copy tab_replicated_new from '/home/cbdb/tab_replicated_<SEGID>.txt' on segment;
-- Greenplum: COPY 400 | Cloudberry: COPY 100 (unexpected)