mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Bug #25275 SINGLE USER MODE prevents ALTER on non-ndb tables for other mysqld nodes
- test case
This commit is contained in:
parent
96366a2deb
commit
a6f6c7d5cf
2 changed files with 15 additions and 0 deletions
|
@ -53,4 +53,7 @@ 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
|
ERROR HY000: Got error 299 'Operation not allowed or aborted due to single user mode' from ndbcluster
|
||||||
COMMIT;
|
COMMIT;
|
||||||
ERROR HY000: Got error 4350 'Transaction already aborted' from ndbcluster
|
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;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
|
|
@ -97,9 +97,21 @@ update t1 set b=b+100 where a=4;
|
||||||
--error 1296
|
--error 1296
|
||||||
COMMIT;
|
COMMIT;
|
||||||
|
|
||||||
|
# Bug #25275 SINGLE USER MODE prevents ALTER on non-ndb
|
||||||
|
# tables for other mysqld nodes
|
||||||
|
--connection server2
|
||||||
|
create table t2 (a int) engine myisam;
|
||||||
|
alter table t2 add column (b int);
|
||||||
|
|
||||||
|
# exit single user mode
|
||||||
--exec $NDB_MGM --no-defaults --ndb-connectstring="localhost:$NDBCLUSTER_PORT" -e "exit single user mode" >> $NDB_TOOLS_OUTPUT
|
--exec $NDB_MGM --no-defaults --ndb-connectstring="localhost:$NDBCLUSTER_PORT" -e "exit single user mode" >> $NDB_TOOLS_OUTPUT
|
||||||
--exec $NDB_TOOLS_DIR/ndb_waiter --no-defaults >> $NDB_TOOLS_OUTPUT
|
--exec $NDB_TOOLS_DIR/ndb_waiter --no-defaults >> $NDB_TOOLS_OUTPUT
|
||||||
|
|
||||||
# cleanup
|
# cleanup
|
||||||
|
--connection server2
|
||||||
|
drop table t2;
|
||||||
--connection server1
|
--connection server1
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
|
||||||
|
# End of 5.0 tests
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue