create table mpp17761.split_tab5( a int, b int, c char(5), d boolean default true) with (appendonly=true, orientation=column )
distributed randomly
partition by list(b)
(
partition a values (1,2,3,4) with (appendonly = true),
partition b values(5,6,7,8) with (appendonly = true),
DEFAULT COLUMN ENCODING (compresstype=zlib,compresslevel=5)
);
CREATE TABLE
create table mpp17761.split_tab5( a int, b int, c char(5), d boolean default true) with (appendonly=true, orientation=column )
distributed randomly
partition by list(b)
(
partition a values (1,2,3,4) with (appendonly = true),
partition b values(5,6,7,8) with (appendonly = true),
DEFAULT COLUMN ENCODING (compresstype=zlib,compresslevel=5)
);
psql:/code/cbdb_testrepo_src/mpp/gpdb/tests/storage/basic/partition/output/mpp17761.sql:196: ERROR: ENCODING clause only supported with column oriented tables
Cloudberry Database version
Expected:
Actual behavior:
What happened
As stated above,
What you think should happen instead
No response
How to reproduce
As stated above
Operating System
centos7
Anything else
No response
Are you willing to submit PR?
Code of Conduct