schema.test 2.45 KB
Newer Older
1 2 3
#
# Just a couple of tests to make sure that schema works.
#
4 5 6
# Drop mysqltest1 database, as it can left from the previous tests.
#

7 8 9
# Save the initial number of concurrent sessions.
--source include/count_sessions.inc

10 11 12
--disable_warnings
drop database if exists mysqltest1;
--enable_warnings
13 14 15 16 17

create schema foo;
show create schema foo;
show schemas;
drop schema foo;
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48


--echo #
--echo # Bug #48940 MDL deadlocks against mysql_rm_db
--echo #

--disable_warnings
DROP SCHEMA IF EXISTS schema1;
--enable_warnings

connect(con2, localhost, root);

--echo # Connection default
connection default;

CREATE SCHEMA schema1;
CREATE TABLE schema1.t1 (a INT);

SET autocommit= FALSE;
INSERT INTO schema1.t1 VALUES (1);

--echo # Connection 2
connection con2;
--send DROP SCHEMA schema1

--echo # Connection default
connection default;
let $wait_condition= SELECT COUNT(*)= 1 FROM information_schema.processlist
                     WHERE state= 'Waiting for table' 
                     AND info='DROP SCHEMA schema1';
--source include/wait_condition.inc
49 50
# Listing the error twice to prevent result diffences based on filename
--error 1,1
51 52 53 54 55 56 57 58 59 60 61 62
ALTER SCHEMA schema1 DEFAULT CHARACTER SET utf8;
SET autocommit= TRUE;

--echo # Connection 2
connection con2;
--reap

--echo # Connection default
connection default;
disconnect con2;


63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
--echo #
--echo # Bug #49988 MDL deadlocks with mysql_create_db, reload_acl_and_cache
--echo #

--disable_warnings
DROP SCHEMA IF EXISTS schema1;
--enable_warnings

connect (con2, localhost, root);

--echo # Connection default
connection default;
CREATE SCHEMA schema1;
CREATE TABLE schema1.t1 (id INT);
LOCK TABLE schema1.t1 WRITE;

--echo # Connection con2
connection con2;
--send DROP SCHEMA schema1

--echo # Connection default
connection default;
let $wait_condition=SELECT COUNT(*)=1 FROM information_schema.processlist 
  WHERE state='Waiting for table' and info='DROP SCHEMA schema1';
--source include/wait_condition.inc

--echo # CREATE SCHEMA used to give a deadlock.
--echo # Now we prohibit CREATE SCHEMA in LOCK TABLES mode.
--error ER_LOCK_OR_ACTIVE_TRANSACTION
CREATE SCHEMA IF NOT EXISTS schema1;

--echo # UNLOCK TABLES so DROP SCHEMA can continue.
UNLOCK TABLES;

--echo # Connection con2
connection con2;
--reap

--echo # Connection default
connection default;
disconnect con2;

105 106 107
# Check that all connections opened by test cases in this file are really
# gone so execution of other tests won't be affected by their presence.
--source include/wait_until_count_sessions.inc