mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
WL#4077, added mask for SHOW DATABASES statement
This commit is contained in:

parent
162c347ad9
commit
04ee08b9fe
@@ -42,9 +42,9 @@ USE mysqltest_sisyfos;
|
||||
# The following should *not* be replicated
|
||||
ALTER DATABASE mysqltest_bob CHARACTER SET latin1;
|
||||
|
||||
SHOW DATABASES;
|
||||
SHOW DATABASES LIKE 'mysql%';
|
||||
sync_slave_with_master;
|
||||
SHOW DATABASES;
|
||||
SHOW DATABASES LIKE 'mysql%';
|
||||
|
||||
connection master;
|
||||
DROP DATABASE IF EXISTS mysqltest_sisyfos;
|
||||
@@ -55,9 +55,9 @@ CREATE DATABASE mysqltest_sisyfos;
|
||||
USE mysqltest_sisyfos;
|
||||
CREATE TABLE t2 (a INT);
|
||||
let $VERSION=`select version()`;
|
||||
SHOW DATABASES;
|
||||
SHOW DATABASES LIKE 'mysql%';
|
||||
sync_slave_with_master;
|
||||
SHOW DATABASES;
|
||||
SHOW DATABASES LIKE 'mysql%';
|
||||
USE mysqltest_prometheus;
|
||||
SHOW TABLES;
|
||||
USE mysqltest_sisyfos;
|
||||
|
Reference in New Issue
Block a user