mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
b4a0b2c2f8
most tests pass. 5.3 merge is next
15 lines
453 B
Text
15 lines
453 B
Text
# A wrapper to test that dropping a database is binlogged
|
|
# correctly. We test all three modes in the same file to avoid
|
|
# unecessary server restarts.
|
|
|
|
--source include/have_innodb.inc
|
|
--source include/have_binlog_format_statement.inc
|
|
|
|
set binlog_format=statement;
|
|
source extra/binlog_tests/database.test;
|
|
set binlog_format=mixed;
|
|
source extra/binlog_tests/database.test;
|
|
set binlog_format=row;
|
|
source extra/binlog_tests/database.test;
|
|
|
|
show databases;
|