You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/9702_not_replicated.down

15 lines
546 B

use sipstats;
alter table packets remove partitioning;
alter table packets drop primary key, drop key uniq,
add primary key (id, timestamp), add unique key (timestamp, src_mac, dst_mac, header(80));
alter table packets partition by range (floor(timestamp)) (partition pmax values less than maxvalue);
alter table messages remove partitioning;
alter table messages drop primary key, drop key timestamp, add primary key (id, timestamp);
alter table messages partition by range (floor(timestamp)) (partition pmax values less than maxvalue);