mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
624d65c591
bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/r/events_bugs.result: uppercase mysql-test/t/events.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/t/events_bugs.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/t/events_grant.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/t/events_logs_tests.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/t/events_scheduling.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/t/events_stress.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/t/events_time_zone.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/t/events_trans.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist" mysql-test/t/events_trans_notembedded.test: wait at the end of the script for event which haven't finished their execution. This should solve bug#26338 events_bugs.test fail on Debian and bug#28285 Test "events_bugs" has instable results of "select /*1*/ ... from processlist"
66 lines
1.7 KiB
Text
66 lines
1.7 KiB
Text
#
|
|
# 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
|
|
#
|
|
grant create, insert, select, delete on mysqltest_db2.*
|
|
to mysqltest_user1@localhost;
|
|
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;
|
|
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;
|
|
|