Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 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 : OFF Directory : /www/server/mysql/mysql-test/t/ |
Upload File : |
# functional change user tests # connect (con_main,localhost,root); create user test_nopw; grant select on test.* to test_nopw; create user test_newpw identified by "newpw"; grant select on test.* to test_newpw; select user(), current_user(), database(); # # massaging the data for tests to pass in the embedded server, # that has authentication completely disabled. # --replace_result "<skip-grants user@skip-grants host>" <test_nopw@%> @> @localhost> select concat('<', user(), '>'), concat('<', current_user(), '>'), database(); change_user test_nopw; --replace_result "<skip-grants user@skip-grants host>" <test_nopw@%> @> @localhost> select concat('<', user(), '>'), concat('<', current_user(), '>'), database(); change_user test_newpw, newpw; --replace_result "<skip-grants user@skip-grants host>" <test_newpw@%> @> @localhost> select concat('<', user(), '>'), concat('<', current_user(), '>'), database(); change_user root; --replace_result "<skip-grants user@skip-grants host>" <root@localhost> @> @localhost> select concat('<', user(), '>'), concat('<', current_user(), '>'), database(); change_user test_nopw,,test; --replace_result "<skip-grants user@skip-grants host>" <test_nopw@%> @> @localhost> select concat('<', user(), '>'), concat('<', current_user(), '>'), database(); change_user test_newpw,newpw,test; --replace_result "<skip-grants user@skip-grants host>" <test_newpw@%> @> @localhost> select concat('<', user(), '>'), concat('<', current_user(), '>'), database(); change_user root,,test; --replace_result "<skip-grants user@skip-grants host>" <root@localhost> @> @localhost> select concat('<', user(), '>'), concat('<', current_user(), '>'), database(); drop user test_nopw; drop user test_newpw; connection default; disconnect con_main; # # 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 18446744073709551615 HA_POS_ERROR 4294967295 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 18446744073709551615 HA_POS_ERROR 4294967295 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; # On some machines the following will result into a warning --disable_warnings SET @@global.max_join_size = 18446744073709551615; --enable_warnings SET @@session.max_join_size = default; --echo change_user --change_user SELECT @@session.sql_big_selects; # # Bug #18329348 Bug #18329560 Bug #18328396 Bug #18329452 mysql_change_user() # resets all SESSION ONLY system variables # SET INSERT_ID=12; SELECT @@INSERT_ID; SET TIMESTAMP=200; SELECT @@TIMESTAMP; --echo change_user --change_user SELECT @@INSERT_ID; SELECT @@TIMESTAMP=200; # # 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'); # # Bug#31222: com_% global status counters behave randomly with # mysql_change_user. # FLUSH STATUS; --disable_result_log --disable_query_log let $i = 100; while ($i) { dec $i; SELECT 1; } --enable_query_log --enable_result_log let $before= query_get_value(SHOW GLOBAL STATUS LIKE 'com_select',Value,1); --change_user let $after= query_get_value(SHOW GLOBAL STATUS LIKE 'com_select',Value,1); if ($after != $before){ SHOW GLOBAL STATUS LIKE 'com_select'; die The value of com_select changed during change_user; } echo Value of com_select did not change;