mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge gbichot@213.136.52.20:/home/bk/mysql-4.1
into mysql.com:/home/mysql_src/mysql-4.1
This commit is contained in:
@ -7,6 +7,12 @@ start slave;
|
||||
reset master;
|
||||
SET @@session.pseudo_thread_id=100;
|
||||
ERROR HY000: Access denied. You need the SUPER privilege for this operation
|
||||
SET @@session.sql_log_bin=0;
|
||||
ERROR HY000: Access denied. You need the SUPER privilege for this operation
|
||||
SET @@session.pseudo_thread_id=100;
|
||||
SET @@session.pseudo_thread_id=connection_id();
|
||||
SET @@session.sql_log_bin=0;
|
||||
SET @@session.sql_log_bin=1;
|
||||
drop table if exists t1,t2;
|
||||
create table t1(f int);
|
||||
create table t2(f int);
|
||||
|
@ -30,7 +30,17 @@ connect (con3,localhost,zedjzlcsjhd,,);
|
||||
connection con3;
|
||||
--error 1227
|
||||
SET @@session.pseudo_thread_id=100;
|
||||
# While we are here we also test that SQL_LOG_BIN can't be set
|
||||
--error 1227
|
||||
SET @@session.sql_log_bin=0;
|
||||
# Now as root, to be sure it works
|
||||
connection con2;
|
||||
SET @@session.pseudo_thread_id=100;
|
||||
SET @@session.pseudo_thread_id=connection_id();
|
||||
SET @@session.sql_log_bin=0;
|
||||
SET @@session.sql_log_bin=1;
|
||||
|
||||
connection con3;
|
||||
let $VERSION=`select version()`;
|
||||
|
||||
--disable_warnings
|
||||
|
Reference in New Issue
Block a user