Current Path : /usr/opt/mysql57/mysql-test/suite/parts/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/opt/mysql57/mysql-test/suite/parts/r/partition_exchange_blackhole.result |
# Blackhole has not implemented check_if_incompatible_data, # so it cannot support EXCHANGE PARTITION CREATE TABLE t (a int, b varchar(55)) ENGINE = 'Blackhole'; CREATE TABLE tp (a int, b varchar(55)) ENGINE = 'Blackhole' PARTITION BY RANGE (a) (PARTITION p0 VALUES LESS THAN (100), PARTITION p1 VALUES LESS THAN MAXVALUE); Warnings: Warning 1287 The partition engine, used by table 'test.tp', is deprecated and will be removed in a future release. Please use native partitioning instead. ALTER TABLE tp EXCHANGE PARTITION p0 WITH TABLE t; ERROR HY000: Tables have different definitions DROP TABLE t, tp;