mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-27832 disable binary logging for SQL SERVICE.
Binary logging is now disabled for the queries run by SQL SERVICE. The binlogging can be turned on with the 'SET SQL_LOG_BIN=On' query. Conflicts: sql/sql_prepare.cc Conflicts: sql/sql_prepare.cc
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
--source include/not_embedded.inc
|
||||
--source include/have_log_bin.inc
|
||||
|
||||
if (!$TEST_SQL_SERVICE_SO) {
|
||||
skip No TEST_SQL_SERVICE plugin;
|
||||
@ -11,6 +12,20 @@ source include/wait_until_count_sessions.inc;
|
||||
install plugin test_sql_service soname 'test_sql_service';
|
||||
show status like 'test_sql_service_passed';
|
||||
|
||||
set global test_sql_service_execute_sql_global= 'create table test.t1 select 1 as a, @@SQL_LOG_BIN';
|
||||
set global test_sql_service_execute_sql_local= 'insert into test.t1 select 2 as a, @@SQL_LOG_BIN';
|
||||
set global test_sql_service_execute_sql_global= 'SET SQL_LOG_BIN=1';
|
||||
set global test_sql_service_execute_sql_global= 'insert into test.t1 select 3 as a, @@SQL_LOG_BIN';
|
||||
set global test_sql_service_execute_sql_global= 'SET SQL_LOG_BIN=0';
|
||||
set global test_sql_service_execute_sql_global= 'insert into test.t1 select 4 as a, @@SQL_LOG_BIN';
|
||||
set global test_sql_service_execute_sql_global= 'SET sql_auto_is_null=1';
|
||||
set global test_sql_service_execute_sql_global= 'insert into test.t1 select 5 as a, @@sql_auto_is_null';
|
||||
set global test_sql_service_execute_sql_global= 'SET sql_auto_is_null=0';
|
||||
set global test_sql_service_execute_sql_global= 'insert into test.t1 select 6 as a, @@sql_auto_is_null';
|
||||
select * from t1 order by a;
|
||||
drop table t1;
|
||||
SET SQL_LOG_BIN=0;
|
||||
|
||||
set global test_sql_service_run_test= 1;
|
||||
show status like 'test_sql_service_passed';
|
||||
|
||||
@ -58,3 +73,9 @@ drop table t1;
|
||||
|
||||
uninstall plugin test_sql_service;
|
||||
|
||||
# Check that statements were executed/binlogged in correct order.
|
||||
source include/show_binlog_events.inc;
|
||||
# --replace_column 2 # 5 #
|
||||
# --replace_regex /xid=[0-9]+/xid=XX/ /GTID [0-9]+-[0-9]+-[0-9]+/GTID #-#-#/
|
||||
# SHOW BINLOG EVENTS LIMIT 3,100;
|
||||
|
||||
|
Reference in New Issue
Block a user