summaryrefslogtreecommitdiff
path: root/mysql-test/suite/ndb/r/ndb_rename.result
diff options
context:
space:
mode:
authorAnitha Gopi <anitha.gopi@sun.com>2010-12-20 19:49:35 +0530
committerAnitha Gopi <anitha.gopi@sun.com>2010-12-20 19:49:35 +0530
commit894ea29b9933a466e1ebc507cdedf74bebbdd4af (patch)
tree22c29c8f16d5e0fabf3c7e8829f66ab5746cf496 /mysql-test/suite/ndb/r/ndb_rename.result
parent83d8d3851ef90104592b29e093af487dd4be1f73 (diff)
downloadmariadb-git-894ea29b9933a466e1ebc507cdedf74bebbdd4af.tar.gz
Bug #59055 : Remove ndb tests from repository. Removal of tests from sys_vars is pending. It has some issues that are yet to be resolved
Diffstat (limited to 'mysql-test/suite/ndb/r/ndb_rename.result')
-rw-r--r--mysql-test/suite/ndb/r/ndb_rename.result24
1 files changed, 0 insertions, 24 deletions
diff --git a/mysql-test/suite/ndb/r/ndb_rename.result b/mysql-test/suite/ndb/r/ndb_rename.result
deleted file mode 100644
index 2cc2dfb3ff1..00000000000
--- a/mysql-test/suite/ndb/r/ndb_rename.result
+++ /dev/null
@@ -1,24 +0,0 @@
-DROP TABLE IF EXISTS t1,t2;
-drop database if exists mysqltest;
-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;
-pk1 attr1 attr2 attr3
-1 1 1 one
-alter table t1 rename t2;
-SELECT * FROM t2 WHERE attr1 = 1;
-pk1 attr1 attr2 attr3
-1 1 1 one
-create database ndbtest;
-alter table t2 rename ndbtest.t2;
-SELECT * FROM ndbtest.t2 WHERE attr1 = 1;
-pk1 attr1 attr2 attr3
-1 1 1 one
-drop table ndbtest.t2;
-drop database ndbtest;