mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
corrected returned error code
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
use test;
|
use test;
|
||||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9,t10;
|
||||||
create table t1 (a int key, b int unique, c int) engine ndb;
|
create table t1 (a int key, b int unique, c int) engine ndb;
|
||||||
ERROR HY000: Can't create table './test/t1.frm' (errno: 155)
|
ERROR HY000: Can't create table 'test.t1' (errno: 4007)
|
||||||
create table t1 (a int key, b int unique, c int) engine ndb;
|
create table t1 (a int key, b int unique, c int) engine ndb;
|
||||||
insert into t1 values (1,1,0),(2,2,0),(3,3,0),(4,4,0),(5,5,0),(6,6,0),(7,7,0),(8,8,0),(9,9,0),(10,10,0);
|
insert into t1 values (1,1,0),(2,2,0),(3,3,0),(4,4,0),(5,5,0),(6,6,0),(7,7,0),(8,8,0),(9,9,0),(10,10,0);
|
||||||
create table t2 as select * from t1;
|
create table t2 as select * from t1;
|
||||||
|
Reference in New Issue
Block a user