mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / ndb / t / ndb_rename.test
blob7f9fd0e6984f7a39cc5e82dca6ac08037d6bd8d6
1 -- source include/have_ndb.inc
2 -- source include/not_embedded.inc
4 --disable_warnings
5 DROP TABLE IF EXISTS t1,t2;
6 drop database if exists mysqltest;
7 --enable_warnings
10 # Table rename tests
14 # Create a normal table with primary key
16 CREATE TABLE t1 (
17   pk1 INT NOT NULL PRIMARY KEY,
18   attr1 INT NOT NULL,
19   attr2 INT,
20   attr3 VARCHAR(10),
21   INDEX i1(attr1)
22 ) ENGINE=ndbcluster;
24 INSERT INTO t1 VALUES (0,0,0,"zero"),(1,1,1,"one"),(2,2,2,"two");
25 SELECT * FROM t1 WHERE attr1 = 1;
26 alter table t1 rename t2;
27 SELECT * FROM t2 WHERE attr1 = 1;
29 create database ndbtest;
30 alter table t2 rename ndbtest.t2;
31 SELECT * FROM ndbtest.t2 WHERE attr1 = 1;
33 drop table ndbtest.t2;
34 drop database ndbtest;
36 # End of 4.1 tests