mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
c01c904749
- Additional tests in 5.1 that need binlog - Mark more test to need binlog mysql-test/include/have_binlog_format_mixed.inc: Need binlog mysql-test/include/have_binlog_format_mixed_or_row.inc: Need binlog mysql-test/include/have_binlog_format_row.inc: Need binlog mysql-test/include/have_binlog_format_statement.inc: Need binlog mysql-test/r/date_formats.result: Show only the variables affected by the testcase to avoid it fails when running without binlog mysql-test/t/date_formats.test: Show only the variables affected by the testcase to avoid it fails when running without binlog mysql-test/t/ndb_binlog_basic2.test: Need binlog mysql-test/t/ps.test: Need binlog mysql-test/t/rpl_sf.test: Nedd binlog
15 lines
516 B
Text
15 lines
516 B
Text
-- source include/have_ndb.inc
|
|
-- source include/have_log_bin.inc
|
|
|
|
--error ER_NDB_CANT_SWITCH_BINLOG_FORMAT
|
|
set session binlog_format=row;
|
|
--error ER_NDB_CANT_SWITCH_BINLOG_FORMAT
|
|
set session binlog_format=statement;
|
|
--error ER_NDB_CANT_SWITCH_BINLOG_FORMAT
|
|
set global binlog_format=row;
|
|
--error ER_NDB_CANT_SWITCH_BINLOG_FORMAT
|
|
set global binlog_format=statement;
|
|
--error ER_NDB_CANT_SWITCH_BINLOG_FORMAT
|
|
set session binlog_format=default;
|
|
--error ER_NDB_CANT_SWITCH_BINLOG_FORMAT
|
|
set global binlog_format=default;
|