mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
0ba100d303
Leopard. The change_user test failed because results of some statements depended on platform and server build flags. subselect_notembedded failure was a result of a bad merge from 5.0. Fixed the corresponding test cases. mysql-test/r/change_user.result: Fixed the test case. mysql-test/r/subselect.result: Fixed the test case. mysql-test/r/subselect_notembedded.result: Fixed the test case. mysql-test/t/change_user.test: Fixed the test case. mysql-test/t/subselect.test: Fixed the test case. mysql-test/t/subselect_notembedded.test: Fixed the test case.
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
#
|
|
# Bug#20023 mysql_change_user() resets the value of SQL_BIG_SELECTS
|
|
#
|
|
|
|
--echo Bug#20023
|
|
SELECT @@session.sql_big_selects;
|
|
# The exact value depends on the server build flags
|
|
--replace_result 4294967295 HA_POS_ERROR 18446744073709551615 HA_POS_ERROR
|
|
SELECT @@global.max_join_size;
|
|
--echo change_user
|
|
--change_user
|
|
SELECT @@session.sql_big_selects;
|
|
# The exact value depends on the server build flags
|
|
--replace_result 4294967295 HA_POS_ERROR 18446744073709551615 HA_POS_ERROR
|
|
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;
|
|
# May produce a warning depending on server build flags
|
|
--disable_warnings
|
|
SET @@global.max_join_size = -1;
|
|
--enable_warnings
|
|
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);
|
|
SELECT IS_USED_LOCK('bug31418') = CONNECTION_ID();
|
|
--echo change_user
|
|
--change_user
|
|
SELECT IS_FREE_LOCK('bug31418');
|
|
SELECT IS_USED_LOCK('bug31418');
|