1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Make sure tests drops objects created and restore variables to default

This commit is contained in:
msvensson@pilot.blaudden
2007-03-01 14:16:38 +01:00
parent a49d6c5f51
commit 6b4a71659e
37 changed files with 69 additions and 10 deletions

View File

@ -92,6 +92,8 @@ INSERT INTO t1 VALUES (7),(8),(9);
sync_slave_with_master;
SELECT * FROM t1;
SET GLOBAL QUERY_CACHE_SIZE=0;
# Bug#22550: Replication of BIT columns failing
--echo ================ Test for BUG#22550 ================
--disable_query_log
@ -113,3 +115,7 @@ UPDATE t1 SET a=0 WHERE b=2;
SELECT HEX(a),b FROM t1;
sync_slave_with_master;
SELECT HEX(a),b FROM t1;
connection master;
DROP TABLE t1;
sync_slave_with_master;