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/13042_not_replicated.up

9 lines
360 B

-- We explicitely don't replicate this statement in order
-- to perform the query only on the corresponding standby
-- node, and we make sure to execute it on both nodes.
-- The reason is that this statement might take quite long
-- and would lock the cdr table on the active node.
SET sql_log_bin=0;
ALTER TABLE accounting.cdr ADD KEY stime_idx(start_time);