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 : |
# # Tests that require transactions # -- source include/not_embedded.inc -- source include/have_innodb.inc --disable_warnings drop database if exists events_test; drop database if exists mysqltest_db2; --enable_warnings create database events_test; use events_test; # # Privilege checks # set @orig_sql_mode= @@sql_mode; set sql_mode= (select replace(@@sql_mode,'NO_AUTO_CREATE_USER','')); grant create, insert, select, delete on mysqltest_db2.* to mysqltest_user1@localhost; set sql_mode= @orig_sql_mode; create database mysqltest_db2; connect (conn1,localhost,mysqltest_user1,,mysqltest_db2); set autocommit=off; # Sanity check select @@autocommit; create table t1 (a varchar(255)) engine=innodb; # Not enough privileges to CREATE EVENT begin work; insert into t1 (a) values ("OK: create event: insufficient privileges"); --error ER_DBACCESS_DENIED_ERROR create event e1 on schedule every 1 day do select 1; rollback work; select * from t1; delete from t1; commit work; # Not enough privileges to ALTER EVENT begin work; insert into t1 (a) values ("OK: alter event: insufficient privileges"); --error ER_DBACCESS_DENIED_ERROR alter event e1 on schedule every 1 day do select 1; rollback work; select * from t1; delete from t1; commit work; # Not enough privileges to DROP EVENT begin work; insert into t1 (a) values ("OK: drop event: insufficient privileges"); --error ER_DBACCESS_DENIED_ERROR drop event e1; rollback work; select * from t1; delete from t1; commit work; # Cleanup disconnect conn1; --source include/wait_until_disconnected.inc connection default; drop user mysqltest_user1@localhost; drop database mysqltest_db2; # # Cleanup # let $wait_condition= select count(*) = 0 from information_schema.processlist where db='events_test' and command = 'Connect' and user=current_user(); --source include/wait_condition.inc drop database events_test;