Add fast compression to save a bit on IO bandwidth
This commit is contained in:
parent
b9b3159828
commit
fdace096fb
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
||||||
|
alter table records alter content set compression lz4;
|
||||||
alter table records rename to records_like;
|
alter table records rename to records_like;
|
||||||
|
|
||||||
create table records
|
create table records
|
||||||
(like records_like including defaults)
|
(like records_like including defaults including compression)
|
||||||
partition by list (collection);
|
partition by list (collection);
|
||||||
|
|
||||||
drop index idx_repo_record_key;
|
drop index idx_repo_record_key;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue