summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_basic.result
diff options
context:
space:
mode:
authorunknown <mskold/marty@mysql.com/linux.site>2006-11-15 12:05:05 +0100
committerunknown <mskold/marty@mysql.com/linux.site>2006-11-15 12:05:05 +0100
commit9c947010f2166c19ed4e6615c4d8c6ca260d32b2 (patch)
treec4b414b096437ef907212ac4ff058f4467d8db04 /mysql-test/r/ndb_basic.result
parent1922a8e2cd86f97e375cc00fcd7bb1431185f7e6 (diff)
downloadmariadb-git-9c947010f2166c19ed4e6615c4d8c6ca260d32b2.tar.gz
bug #24301 Next command hangs in mysql after creating new NDB table via LIKE operation.: Locked mutex LOCK_open during operation
Diffstat (limited to 'mysql-test/r/ndb_basic.result')
-rw-r--r--mysql-test/r/ndb_basic.result15
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_basic.result b/mysql-test/r/ndb_basic.result
index e0255ddb9e7..b7e893faf29 100644
--- a/mysql-test/r/ndb_basic.result
+++ b/mysql-test/r/ndb_basic.result
@@ -758,4 +758,19 @@ c VARCHAR(255) NOT NULL,
CONSTRAINT pk_b_c_id PRIMARY KEY (b,c),
CONSTRAINT fk_a FOREIGN KEY(a) REFERENCES t1(a))engine=ndb;
drop table t1, t2;
+create table t1 (a int not null primary key, b int) engine=ndb;
+insert into t1 values(1,1),(2,2),(3,3);
+create table t2 like t1;
+insert into t2 select * from t1;
+select * from t1 order by a;
+a b
+1 1
+2 2
+3 3
+select * from t2 order by a;
+a b
+1 1
+2 2
+3 3
+drop table t1, t2;
End of 5.1 tests