diff options
author | unknown <andrey@lmy004.> | 2006-01-11 18:09:05 +0100 |
---|---|---|
committer | unknown <andrey@lmy004.> | 2006-01-11 18:09:05 +0100 |
commit | 2fc956fae97a7a5c1bad9f58af3e6fe19239a141 (patch) | |
tree | b0cac7121379f8e07be12ac88fb9b00c04c75be0 /mysql-test/include/system_db_struct.inc | |
parent | 8d1ea9e259cfc8d9edb0b84a9d7f693e62f91120 (diff) | |
download | mariadb-git-2fc956fae97a7a5c1bad9f58af3e6fe19239a141.tar.gz |
WL #1034 (Internal CRON) pre-push updates
- various fixes of test cases
(hopefully the last pre-push update before the push)
mysql-test/include/system_db_struct.inc:
extend test case to include testing for event system table
mysql-test/r/events.result:
results of events test
mysql-test/r/system_mysql_db.result:
more testing - add structure of event system table
mysql-test/t/events.test:
test case for events (internal CRON)
mysql-test/t/system_mysql_db_fix.test:
drop event table and leave the test database empty
scripts/mysql_create_system_tables.sh:
add missing create table statement
scripts/mysql_fix_privilege_tables.sql:
don't specify the database. this fixes a failing test case which creates the
tables not on mysql but on a test database and then tests again mysql.
sql/event_executor.cc:
if asked to stop -> stop.
Diffstat (limited to 'mysql-test/include/system_db_struct.inc')
-rw-r--r-- | mysql-test/include/system_db_struct.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/include/system_db_struct.inc b/mysql-test/include/system_db_struct.inc index c66590b2fd8..9e8886377fc 100644 --- a/mysql-test/include/system_db_struct.inc +++ b/mysql-test/include/system_db_struct.inc @@ -12,3 +12,4 @@ show create table tables_priv; show create table columns_priv; show create table procs_priv; show create table proc; +show create table event; |