1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Tests: dependency on wsrep removed from sql_sequence tests

Affected tests:
sql_sequence.gtid sql_sequence.replication
This commit is contained in:
Aleksey Midenkov
2017-11-14 13:16:31 +03:00
parent f9b8c908a0
commit ad69c4b722
4 changed files with 12 additions and 15 deletions

View File

@ -600,10 +600,9 @@ set binlog_format=statement
------------------------------------------
connection master;
set session binlog_format=statement;
show session variables like '%binlog_format%';
Variable_name Value
binlog_format STATEMENT
wsrep_forced_binlog_format NONE
select @@session.binlog_format;
@@session.binlog_format
STATEMENT
create sequence s1 cache 2;
select next value for s1;
ERROR HY000: Cannot execute statement: impossible to write to binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-based logging.