i|1|drop table if exists t1| i|1|CREATE TABLE t1 ( `i1` int(11) NOT NULL AUTO_INCREMENT, primary key (i1) ) ENGINE=Falcon PARTITION BY HASH(i1) PARTITIONS 2; | n|1|set autocommit=off;INSERT INTO t1 (i1) VALUES (FLOOR(rand()*255))|