2007-10-16 17:29:22 +02:00
|
|
|
#
|
|
|
|
# Bug#20023 mysql_change_user() resets the value of SQL_BIG_SELECTS
|
|
|
|
#
|
|
|
|
|
|
|
|
--echo Bug#20023
|
|
|
|
SELECT @@session.sql_big_selects;
|
2008-03-07 19:14:34 +01:00
|
|
|
# The exact value depends on the server build flags
|
2008-03-28 11:14:27 +01:00
|
|
|
--replace_result 18446744073709551615 HA_POS_ERROR 4294967295 HA_POS_ERROR
|
2007-10-16 17:29:22 +02:00
|
|
|
SELECT @@global.max_join_size;
|
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
SELECT @@session.sql_big_selects;
|
2008-03-07 19:14:34 +01:00
|
|
|
# The exact value depends on the server build flags
|
2008-03-28 11:14:27 +01:00
|
|
|
--replace_result 18446744073709551615 HA_POS_ERROR 4294967295 HA_POS_ERROR
|
2007-10-16 17:29:22 +02:00
|
|
|
SELECT @@global.max_join_size;
|
|
|
|
SET @@global.max_join_size = 10000;
|
|
|
|
SET @@session.max_join_size = default;
|
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
SELECT @@session.sql_big_selects;
|
2008-02-20 15:59:03 +01:00
|
|
|
# On some machines the following will result into a warning
|
2008-03-07 19:14:34 +01:00
|
|
|
--disable_warnings
|
2007-10-16 17:29:22 +02:00
|
|
|
SET @@global.max_join_size = -1;
|
2008-03-07 19:14:34 +01:00
|
|
|
--enable_warnings
|
2007-10-16 17:29:22 +02:00
|
|
|
SET @@session.max_join_size = default;
|
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
SELECT @@session.sql_big_selects;
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bug#31418 User locks misfunctioning after mysql_change_user()
|
|
|
|
#
|
|
|
|
|
|
|
|
--echo Bug#31418
|
|
|
|
SELECT IS_FREE_LOCK('bug31418');
|
|
|
|
SELECT IS_USED_LOCK('bug31418');
|
|
|
|
SELECT GET_LOCK('bug31418', 1);
|
2007-10-17 21:43:30 +02:00
|
|
|
SELECT IS_USED_LOCK('bug31418') = CONNECTION_ID();
|
2007-10-16 17:29:22 +02:00
|
|
|
--echo change_user
|
|
|
|
--change_user
|
|
|
|
SELECT IS_FREE_LOCK('bug31418');
|
|
|
|
SELECT IS_USED_LOCK('bug31418');
|
2008-02-12 18:59:09 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Bug#31222: com_% global status counters behave randomly with
|
|
|
|
# mysql_change_user.
|
|
|
|
#
|
2008-02-13 11:00:24 +01:00
|
|
|
# Moved to not_embedded_server.test due to Bug#34517: SHOW GLOBAL STATUS does
|
|
|
|
# not work properly in embedded server.
|
|
|
|
#
|
|
|
|
# TODO: move it back when Bug#34517 is fixed (don't forget to add
|
|
|
|
# --force-restart into change_user-master.opt).
|
|
|
|
#
|