Current Path : /usr/opt/mysql57/mysql-test/suite/ndb/t/ |
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/ndb/t/ndb_rename.test |
# The include statement below is a temp one for tests that are yet to #be ported to run with InnoDB, #but needs to be kept for tests that would need MyISAM in future. --source include/force_myisam_default.inc -- source include/have_ndb.inc --disable_warnings DROP TABLE IF EXISTS t1,t2; drop database if exists mysqltest; --enable_warnings # # Table rename tests # # # Create a normal table with primary key # CREATE TABLE t1 ( pk1 INT NOT NULL PRIMARY KEY, attr1 INT NOT NULL, attr2 INT, attr3 VARCHAR(10), INDEX i1(attr1) ) ENGINE=ndbcluster; INSERT INTO t1 VALUES (0,0,0,"zero"),(1,1,1,"one"),(2,2,2,"two"); SELECT * FROM t1 WHERE attr1 = 1; alter table t1 rename t2; SELECT * FROM t2 WHERE attr1 = 1; # # Bug #16021021 ALTER ... RENAME FAILS TO RENAME ON PARTICIPANT MYSQLD # --error ER_NOT_SUPPORTED_YET alter table t2 rename t1, add attr4 int; create database ndbtest; alter table t2 rename ndbtest.t2; SELECT * FROM ndbtest.t2 WHERE attr1 = 1; drop table ndbtest.t2; create table t1 ( pk1 INT NOT NULL PRIMARY KEY, b blob ) engine = ndbcluster; alter table t1 rename ndbtest.t1; alter table ndbtest.t1 rename test.t1; drop table test.t1; drop database ndbtest; # End of 4.1 tests