robertmu opened a new issue, #1298:
URL: https://github.com/apache/cloudberry/issues/1298
```sql
-- 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)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]