403Webshell
Server IP : 172.67.216.182  /  Your IP : 172.69.165.76
Web Server : Apache
System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64
User : www ( 1000)
PHP Version : 7.4.33
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /www/server/mysql/src/mysql-test/suite/rpl/t/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/server/mysql/src/mysql-test/suite/rpl/t/rpl_session_var.test
# Replication of session variables.
# FOREIGN_KEY_CHECKS is tested in rpl_insert_id.test

--source include/not_group_replication_plugin.inc
source include/have_myisam.inc;
source include/master-slave.inc;

disable_query_log;
call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT");
enable_query_log;

drop table if exists t1;
create table t1(a varchar(100),b int);
set @@session.sql_mode=pipes_as_concat;
insert into t1 values('My'||'SQL', 1);
set @@session.sql_mode=default;
insert into t1 values('1'||'2', 2);
select * from t1 where b<3 order by a;
--source include/sync_slave_sql_with_master.inc
select * from t1 where b<3 order by a;
connection master;
# if the slave does the next sync_with_master fine, then it means it accepts the
# two lines of ANSI syntax below, which is what we want to check.
set @@session.sql_mode=ignore_space;
insert into t1 values(LTRIM          ('  MySQL'), 3);
set @@session.sql_mode=ansi_quotes;
create table "t2" ("a" int);
drop table t1, t2;
set @@session.sql_mode=default;
create table t1(a int auto_increment primary key);
create table t2(b int, a int);

#
# To verify Bug#19641806 SQL_AUTO_IS_NULL IS NOT REPLICATED, FAILURE
#                        IN RPL_SESSION_VAR AND RPL_INSERT_ID
# The bug manifested in various scenarios incl when the slave applier thread
# resumes having a next event to take on dependent on LAST_INSERT_ID.
# After fixing the event - INSERT..SELECT..where a-is-null - is processed correctly,
# which is proved with diffing the master and slave tables.
#

# The slave applier gets stopped and master prepares the required event.
--source include/sync_slave_sql_with_master.inc
--source include/stop_slave_sql.inc

--connection master
set @sav.sql_auto_is_null=@@session.sql_auto_is_null;
set @@session.sql_auto_is_null=1;
insert into t1 values(null);
insert into t2 select 1,a from t1 where a is null;
# Prove of a regular case where last_insert_id() is computed
# without any hint of @@session.last_insert_id.
--let $assert_text= set @@session.last_insert_id must be found in results of the insert..select
--let $assert_cond=`select count(*)=1 from t2 where a=last_insert_id()`
--source include/assert.inc

# Explicitly set @session.last_insert_id makes the select
# to find the last inserted value even when it was another connection
# that  inserted it.
insert into t1 values(null);
--let $last_insert_id=`select last_insert_id()`

--connection master1
set @@session.sql_auto_is_null=1;
--eval set @@session.last_insert_id=$last_insert_id;
insert into t2 select 1,a from t1 where a is null;

--connection master
# Prove of a "hinted" last_insert_id case.
--let $assert_text= set @@session.last_insert_id must be found in results of the insert..select
--let $assert_cond=`select count(*)=1 from t2 where a=last_insert_id()`
--source include/assert.inc
insert into t1 values(null);
set @@session.sql_auto_is_null=0;
insert into t2 select 1,a from t1 where a is null;
insert into t1 values(null);
set @@session.last_insert_id=last_insert_id();
insert into t2 select 1,a from t1 where a is null;
--let $assert_text= set @@session.last_insert_id must *not* be found in results of the insert..select
--let $assert_cond=`select count(*)=0 from t2 where a=@@session.last_insert_id`
--source include/assert.inc
set @@session.sql_auto_is_null= @sav.sql_auto_is_null;

# The slave applier restarts with the first of the above queries'  events
# which satisfy the mentioned above failure scenario.
--connection slave
--source include/start_slave_sql.inc

--connection master
--source include/sync_slave_sql_with_master.inc

# Bug#19641806 fixing correctness proof
let $diff_tables= master:t2, slave:t2;
--source include/diff_tables.inc

# Explicit mysqlbinlog testing in Bug#19641806  fixes is similar
# to the "hinted" last_insert_id above.
# An auto-inc INSERT is separated is followed by INSERT-SELECT
# in a new binlog file.
# The INSERT-SELECT binlog file is replayed, clearly by a different session,
# and correctly.
--connection master
delete from t1;
delete from t2;
insert into t1 values(null);
flush logs;
set @sav.sql_auto_is_null=@@session.sql_auto_is_null;
set @@session.sql_auto_is_null=1;
insert into t2 select 1,a from t1 where a is null;
set @@session.sql_auto_is_null= @sav.sql_auto_is_null;

--let $MYSQLD_DATADIR=`select @@datadir`
--let $binlog_file= query_get_value(SHOW MASTER STATUS, File, 1)
flush logs;
delete from t2;
--exec $MYSQL_BINLOG $MYSQLD_DATADIR/$binlog_file > $MYSQLTEST_VARDIR/tmp/bug19641806.sql
--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/bug19641806.sql
--remove_file $MYSQLTEST_VARDIR/tmp/bug19641806.sql

# The same positive assert as above. This piece of test is ineffective
# with GTID is ON due to the ineffective replay from the binlog.  The
# client set @@last_insert_id in GTID mode is tested above on l.63,
# see connection master1.
--let $assert_text= set @@session.last_insert_id must be found in binlog results of the insert..select
--let $assert_cond=`select @@global.gtid_mode = 'ON' or count(*)=1 from t2 where a=last_insert_id()`
--source include/assert.inc

--source include/sync_slave_sql_with_master.inc
let $diff_tables= master:t2, slave:t2;
--source include/diff_tables.inc
#
# eof of bug19641806 tests
#

# Cleanup
--connection master
drop table t1,t2;
--source include/sync_slave_sql_with_master.inc

#
# Bug #29878 Garbage data generation when executing SESSION_USER() on a slave. 
#

connection master;
CREATE TABLE t1 (
  `id` int(11) NOT NULL auto_increment,
  `data` varchar(100),
  PRIMARY KEY  (`id`)
 ) ENGINE=MyISAM;
--disable_warnings
INSERT INTO t1(data) VALUES(SESSION_USER());
--enable_warnings
--source include/sync_slave_sql_with_master.inc
SELECT length(data) < 100 FROM t1;
connection master;
drop table t1;

--source include/rpl_end.inc

Youez - 2016 - github.com/yon3zu
LinuXploit