mariadb/mysql-test/r/ndb_single_user.result

60 lines
2.3 KiB
Text
Raw Normal View History

2007-03-09 10:39:13 +01:00
use test;
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;
2007-03-09 12:12:46 +01:00
ERROR HY000: Can't create table './test/t1.frm' (errno: 299)
2007-03-09 10:39:13 +01:00
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);
create table t2 as select * from t1;
select * from t1 where a = 1;
a b c
1 1 0
select * from t1 where b = 4;
a b c
4 4 0
select * from t1 where a > 4 order by a;
a b c
5 5 0
6 6 0
7 7 0
8 8 0
9 9 0
10 10 0
update t1 set b=102 where a = 2;
update t1 set b=103 where b = 3;
update t1 set b=b+100;
update t1 set b=b+100 where a > 7;
delete from t1;
insert into t1 select * from t2;
drop table t1;
ERROR 42S02: Unknown table 't1'
create index new_index on t1 (c);
2007-03-09 12:12:46 +01:00
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
2007-03-09 10:39:13 +01:00
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);
2007-03-09 12:12:46 +01:00
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
2007-03-09 10:39:13 +01:00
select * from t1 where a = 1;
2007-03-09 12:12:46 +01:00
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
2007-03-09 10:39:13 +01:00
select * from t1 where b = 4;
2007-03-09 12:12:46 +01:00
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
2007-03-09 10:39:13 +01:00
update t1 set b=102 where a = 2;
2007-03-09 12:12:46 +01:00
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
2007-03-09 10:39:13 +01:00
update t1 set b=103 where b = 3;
2007-03-09 12:12:46 +01:00
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
2007-03-09 10:39:13 +01:00
update t1 set b=b+100;
2007-03-09 12:12:46 +01:00
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
2007-03-09 10:39:13 +01:00
update t1 set b=b+100 where a > 7;
2007-03-09 12:12:46 +01:00
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
2007-03-23 17:14:38 +01:00
BEGIN;
update t1 set b=b+100 where a=1;
BEGIN;
update t1 set b=b+100 where a=2;
update t1 set b=b+100 where a=3;
COMMIT;
update t1 set b=b+100 where a=4;
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
COMMIT;
ERROR HY000: Got error 4350 'Transaction already aborted' from ndbcluster
create table t2 (a int) engine myisam;
alter table t2 add column (b int);
drop table t2;
2007-03-09 10:39:13 +01:00
drop table t1;