Files
percona-toolkit/t/pt-archiver/samples/table13.sql
2011-06-24 16:02:05 -06:00

8 lines
242 B
SQL

use test;
-- This test moves rows to different tables depending on the value of a
-- column.
drop table if exists table_13, table_odd, table_even;
create table table_13(a int not null primary key);
insert into table_13(a) values(1),(2),(3);