Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
25743de7
Commit
25743de7
authored
Dec 17, 2009
by
Andrei Elkin
Browse files
Options
Browse Files
Download
Plain Diff
merge from 5.0 with bug@49740 fixes
parents
51ffb05c
0f739790
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
mysql-test/suite/rpl/r/rpl_temporary.result
mysql-test/suite/rpl/r/rpl_temporary.result
+2
-0
mysql-test/suite/rpl/t/rpl_temporary.test
mysql-test/suite/rpl/t/rpl_temporary.test
+2
-0
No files found.
mysql-test/suite/rpl/r/rpl_temporary.result
View file @
25743de7
...
@@ -36,8 +36,10 @@ ERROR 42000: Access denied; you need the SUPER privilege for this operation
...
@@ -36,8 +36,10 @@ ERROR 42000: Access denied; you need the SUPER privilege for this operation
SELECT @@session.sql_select_limit = @save_select_limit;
SELECT @@session.sql_select_limit = @save_select_limit;
@@session.sql_select_limit = @save_select_limit
@@session.sql_select_limit = @save_select_limit
1
1
SET @save_conn_id= connection_id();
SET @@session.pseudo_thread_id=100;
SET @@session.pseudo_thread_id=100;
SET @@session.pseudo_thread_id=connection_id();
SET @@session.pseudo_thread_id=connection_id();
SET @@session.pseudo_thread_id=@save_conn_id;
SET @@session.sql_log_bin=0;
SET @@session.sql_log_bin=0;
SET @@session.sql_log_bin=1;
SET @@session.sql_log_bin=1;
drop table if exists t1,t2;
drop table if exists t1,t2;
...
...
mysql-test/suite/rpl/t/rpl_temporary.test
View file @
25743de7
...
@@ -116,8 +116,10 @@ SET @@session.sql_select_limit=10, @@session.sql_log_bin=0;
...
@@ -116,8 +116,10 @@ SET @@session.sql_select_limit=10, @@session.sql_log_bin=0;
SELECT
@@
session
.
sql_select_limit
=
@
save_select_limit
;
#shouldn't have changed
SELECT
@@
session
.
sql_select_limit
=
@
save_select_limit
;
#shouldn't have changed
# Now as root, to be sure it works
# Now as root, to be sure it works
connection
con2
;
connection
con2
;
SET
@
save_conn_id
=
connection_id
();
SET
@@
session
.
pseudo_thread_id
=
100
;
SET
@@
session
.
pseudo_thread_id
=
100
;
SET
@@
session
.
pseudo_thread_id
=
connection_id
();
SET
@@
session
.
pseudo_thread_id
=
connection_id
();
SET
@@
session
.
pseudo_thread_id
=@
save_conn_id
;
SET
@@
session
.
sql_log_bin
=
0
;
SET
@@
session
.
sql_log_bin
=
0
;
SET
@@
session
.
sql_log_bin
=
1
;
SET
@@
session
.
sql_log_bin
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment