diff options
author | Daniele Sciascia <daniele.sciascia@galeracluster.com> | 2015-11-06 10:50:21 +0100 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2016-02-10 17:42:42 -0500 |
commit | bd1d2b90a77f31c7d982f18902a39a2cadce0cc3 (patch) | |
tree | 5ac7edc7104e73281f9fde4ca4867958a64c48f3 /mysql-test/suite/galera/t | |
parent | 8a93a7c0b0436a1b863c3b3cc165dca9a690a064 (diff) | |
download | mariadb-git-bd1d2b90a77f31c7d982f18902a39a2cadce0cc3.tar.gz |
refs codership/mysql-wsrep#201
Removes MTR tests.
Diffstat (limited to 'mysql-test/suite/galera/t')
4 files changed, 0 insertions, 125 deletions
diff --git a/mysql-test/suite/galera/t/galera_query_cache_sync_wait-master.opt b/mysql-test/suite/galera/t/galera_query_cache_sync_wait-master.opt deleted file mode 100644 index a00258bc48c..00000000000 --- a/mysql-test/suite/galera/t/galera_query_cache_sync_wait-master.opt +++ /dev/null @@ -1 +0,0 @@ ---query_cache_type=1 diff --git a/mysql-test/suite/galera/t/galera_query_cache_sync_wait.test b/mysql-test/suite/galera/t/galera_query_cache_sync_wait.test deleted file mode 100644 index 0634eba3264..00000000000 --- a/mysql-test/suite/galera/t/galera_query_cache_sync_wait.test +++ /dev/null @@ -1,90 +0,0 @@ ---source include/galera_cluster.inc ---source include/have_innodb.inc ---source include/have_debug_sync.inc ---source include/have_query_cache.inc - -CREATE TABLE t1 (id INT PRIMARY KEY AUTO_INCREMENT) ENGINE=InnoDB; -INSERT INTO t1 VALUES (1); - ---connection node_2 ---let $wsrep_provider_options_orig = `SELECT @@wsrep_provider_options` -SET GLOBAL wsrep_provider_options = "repl.causal_read_timeout=PT1S"; -SET GLOBAL DEBUG = "d,sync.wsrep_apply_cb"; -SET SESSION wsrep_sync_wait = 7; -SELECT MAX(id) FROM t1; # first lookup miss - -# -# Query cache hit, wait timeout -# - ---connection node_1 -INSERT INTO t1 VALUES (2); - ---connection node_2 ---error ER_LOCK_WAIT_TIMEOUT -SELECT MAX(id) FROM t1; -SET GLOBAL DEBUG = ""; -SET DEBUG_SYNC = "now SIGNAL signal.wsrep_apply_cb"; - -FLUSH QUERY CACHE; -SET SESSION wsrep_sync_wait = 7; -SET GLOBAL DEBUG = "d,sync.wsrep_apply_cb"; - -# -# Query cache miss, wait timeout -# - ---connection node_1 -INSERT INTO t1 VALUES (3); - ---connection node_2 ---error ER_LOCK_WAIT_TIMEOUT -SELECT MAX(id) FROM t1; -SET GLOBAL DEBUG = ""; -SET DEBUG_SYNC = "now SIGNAL signal.wsrep_apply_cb"; - -# -# Query cache miss -# - ---connection node_1 -INSERT INTO t1 VALUES (4); - ---connection node_2 -SET SESSION wsrep_sync_wait = 7; -SELECT MAX(id) FROM t1; -SET SESSION wsrep_sync_wait = 7; - -# -# Query cache hit -# - -FLUSH STATUS; -SELECT MAX(id) FROM t1; -SELECT VARIABLE_VALUE = 1 FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME = 'Qcache_hits'; -SET GLOBAL DEBUG = "d,sync.wsrep_apply_cb"; - -# -# Query cache invalidated -# - ---connection node_1 -INSERT INTO t1 VALUES (5); - ---connection node_2 -SET SESSION wsrep_sync_wait = 7; ---send SELECT MAX(id) FROM t1 - ---connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2 ---connection node_2a -SET GLOBAL DEBUG = ""; -SET DEBUG_SYNC = "now SIGNAL signal.wsrep_apply_cb"; - ---connection node_2 ---reap -SELECT VARIABLE_VALUE = 1 FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME = 'Qcache_hits'; - - ---disable_query_log ---eval SET GLOBAL wsrep_provider_options = "$wsrep_provider_options_orig" -DROP TABLE t1; diff --git a/mysql-test/suite/galera/t/mysql-wsrep#201-master.opt b/mysql-test/suite/galera/t/mysql-wsrep#201-master.opt deleted file mode 100644 index a00258bc48c..00000000000 --- a/mysql-test/suite/galera/t/mysql-wsrep#201-master.opt +++ /dev/null @@ -1 +0,0 @@ ---query_cache_type=1 diff --git a/mysql-test/suite/galera/t/mysql-wsrep#201.test b/mysql-test/suite/galera/t/mysql-wsrep#201.test deleted file mode 100644 index e9327540195..00000000000 --- a/mysql-test/suite/galera/t/mysql-wsrep#201.test +++ /dev/null @@ -1,33 +0,0 @@ ---source include/galera_cluster.inc ---source include/have_innodb.inc ---source include/have_query_cache.inc - -CREATE TABLE t1 (id INT PRIMARY KEY AUTO_INCREMENT) ENGINE=InnoDB; -INSERT INTO t1 VALUES (DEFAULT); - ---connection node_2 ---let $qcache_size_orig = `SELECT @@GLOBAL.query_cache_size` -SET GLOBAL query_cache_size=1355776; -SET SESSION wsrep_sync_wait = 7; - ---disable_query_log - ---let $count = 500 -while ($count) -{ - --connection node_1 - INSERT INTO t1 VALUES (DEFAULT); - --let $val1 = `SELECT LAST_INSERT_ID()` - --connection node_2 - --let $val2 = `SELECT MAX(id) FROM t1` - --let $val3 = `SELECT $val1 != $val2` - if ($val3) - { - --echo $val1 $val2 - --die wsrep_sync_wait failed - } - --dec $count -} - ---eval SET GLOBAL query_cache_size = $qcache_size_orig -DROP TABLE t1; |