summaryrefslogtreecommitdiff
path: root/mysql-test/suite/engines/funcs/t/rpl_loaddata_m.test
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-03-17 17:46:17 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2021-03-17 17:46:17 +0200
commited1f52a20662ed07117cc65a0f9cdaf699856a74 (patch)
treec51ee8bae9e0e8c87d0c98b3db7a9f71ed2fd3ea /mysql-test/suite/engines/funcs/t/rpl_loaddata_m.test
parent5511c21b41680a8c75f07a002a7362be7d157380 (diff)
parent182faa3c06dd54e0364e6f43b4d5d938f94c1743 (diff)
downloadmariadb-git-ed1f52a20662ed07117cc65a0f9cdaf699856a74.tar.gz
WIP merge 10.3 to 10.4bb-10.4-MDEV-25121
FIXME: review main.brackets result change FIXME: Failing main.subselect* tests
Diffstat (limited to 'mysql-test/suite/engines/funcs/t/rpl_loaddata_m.test')
-rw-r--r--mysql-test/suite/engines/funcs/t/rpl_loaddata_m.test52
1 files changed, 1 insertions, 51 deletions
diff --git a/mysql-test/suite/engines/funcs/t/rpl_loaddata_m.test b/mysql-test/suite/engines/funcs/t/rpl_loaddata_m.test
index 42c3ad99f33..901c40b5079 100644
--- a/mysql-test/suite/engines/funcs/t/rpl_loaddata_m.test
+++ b/mysql-test/suite/engines/funcs/t/rpl_loaddata_m.test
@@ -1,52 +1,2 @@
-# See if the master logs LOAD DATA INFILE correctly when binlog_*_db rules
-# exist.
-# This is for BUG#1100 (LOAD DATA INFILE was half-logged).
-######################################################
-# Change Author: JBM
-# Change Date: 2005-12-22
-# Change: Test rewritten to remove show binlog events
-# and to test the option better + Cleanup
-######################################################
--- source include/master-slave.inc
+--source suite/rpl/t/rpl_loaddata_m.test
---disable_warnings
-drop database if exists mysqltest;
---enable_warnings
-
-connection master;
-# 'test' database should be ignored by the slave
-USE test;
-CREATE TABLE t1(a INT, b INT, UNIQUE(b));
-LOAD DATA INFILE '../../std_data/rpl_loaddata.dat' INTO TABLE test.t1;
-SELECT COUNT(*) FROM test.t1;
-
-# 'mysqltest' database should NOT be ignored by the slave
-CREATE DATABASE mysqltest;
-USE mysqltest;
-CREATE TABLE t1(a INT, b INT, UNIQUE(b));
-LOAD DATA INFILE '../../std_data/rpl_loaddata.dat' INTO TABLE mysqltest.t1;
-SELECT COUNT(*) FROM mysqltest.t1;
-
-# Now lets check the slave to see what we have :-)
-save_master_pos;
-connection slave;
-sync_with_master;
-
-SHOW DATABASES;
-
-USE test;
-SHOW TABLES;
-
-USE mysqltest;
-SHOW TABLES;
-SELECT COUNT(*) FROM mysqltest.t1;
-
-#show binlog events;
-
-# Cleanup
-connection master;
-DROP DATABASE mysqltest;
-DROP TABLE test.t1;
-sync_slave_with_master;
-
-# End of test