1DROP TABLE IF EXISTS t1; 2CREATE TABLE `t1` ( 3`id` int(11) default NULL 4) ENGINE=BLACKHOLE DEFAULT CHARSET=latin1 PARTITION BY HASH (id) ; 5Warnings: 6Warning 1287 The partition engine, used by table 'test.t1', is deprecated and will be removed in a future release. Please use native partitioning instead. 7SELECT * FROM t1; 8id 9Warnings: 10Warning 1287 The partition engine, used by table 'test.t1', is deprecated and will be removed in a future release. Please use native partitioning instead. 11INSERT INTO t1 VALUES (0); 12DROP TABLE t1; 13