Commit 31bd86c8 authored by Aleksey Midenkov's avatar Aleksey Midenkov Committed by Sergey Vojtovich

Tests: dependency on wsrep removed from sql_sequence tests

Affected tests:
sql_sequence.gtid sql_sequence.replication
parent 5fdd51e7
...@@ -600,10 +600,9 @@ set binlog_format=statement ...@@ -600,10 +600,9 @@ set binlog_format=statement
------------------------------------------ ------------------------------------------
connection master; connection master;
set session binlog_format=statement; set session binlog_format=statement;
show session variables like '%binlog_format%'; select @@session.binlog_format;
Variable_name Value @@session.binlog_format
binlog_format STATEMENT STATEMENT
wsrep_forced_binlog_format NONE
create sequence s1 cache 2; create sequence s1 cache 2;
select next value for s1; 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. 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.
......
...@@ -503,7 +503,7 @@ drop sequence s1; ...@@ -503,7 +503,7 @@ drop sequence s1;
--echo ------------------------------------------ --echo ------------------------------------------
connection master; connection master;
set session binlog_format=statement; set session binlog_format=statement;
show session variables like '%binlog_format%'; select @@session.binlog_format;
create sequence s1 cache 2; create sequence s1 cache 2;
--error ER_BINLOG_STMT_MODE_AND_ROW_ENGINE --error ER_BINLOG_STMT_MODE_AND_ROW_ENGINE
select next value for s1; select next value for s1;
......
...@@ -696,10 +696,9 @@ set binlog_format=statement ...@@ -696,10 +696,9 @@ set binlog_format=statement
------------------------------------------ ------------------------------------------
connection master; connection master;
set session binlog_format=statement; set session binlog_format=statement;
show session variables like '%binlog_format%'; select @@session.binlog_format;
Variable_name Value @@session.binlog_format
binlog_format STATEMENT STATEMENT
wsrep_forced_binlog_format NONE
create sequence s1 cache 2; create sequence s1 cache 2;
select next value for s1; 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. 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.
...@@ -719,10 +718,9 @@ set binlog_format=mixed ...@@ -719,10 +718,9 @@ set binlog_format=mixed
------------------------------------------ ------------------------------------------
connection master; connection master;
set session binlog_format=mixed; set session binlog_format=mixed;
show session variables like '%binlog_format%'; select @@session.binlog_format;
Variable_name Value @@session.binlog_format
binlog_format MIXED MIXED
wsrep_forced_binlog_format NONE
create sequence s1 cache 2; create sequence s1 cache 2;
select next value for s1; select next value for s1;
next value for s1 next value for s1
......
...@@ -582,7 +582,7 @@ drop sequence s1; ...@@ -582,7 +582,7 @@ drop sequence s1;
--echo ------------------------------------------ --echo ------------------------------------------
connection master; connection master;
set session binlog_format=statement; set session binlog_format=statement;
show session variables like '%binlog_format%'; select @@session.binlog_format;
create sequence s1 cache 2; create sequence s1 cache 2;
--error ER_BINLOG_STMT_MODE_AND_ROW_ENGINE --error ER_BINLOG_STMT_MODE_AND_ROW_ENGINE
select next value for s1; select next value for s1;
...@@ -603,7 +603,7 @@ drop sequence s1; ...@@ -603,7 +603,7 @@ drop sequence s1;
--echo ------------------------------------------ --echo ------------------------------------------
connection master; connection master;
set session binlog_format=mixed; set session binlog_format=mixed;
show session variables like '%binlog_format%'; select @@session.binlog_format;
create sequence s1 cache 2; create sequence s1 cache 2;
select next value for s1; select next value for s1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment