diff options
author | unknown <msvensson@pilot.blaudden> | 2007-04-18 16:23:19 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.blaudden> | 2007-04-18 16:23:19 +0200 |
commit | 07ec45cc557fe7224cb3f675c6b7be46258f07a3 (patch) | |
tree | 0845aba6c9b63f58b4dcb2622c2e5bba4399535a /mysql-test/r/mysql_upgrade.result | |
parent | 6bfa5a40bc8619d535ac656c36d4ebc5fd18093b (diff) | |
download | mariadb-git-07ec45cc557fe7224cb3f675c6b7be46258f07a3.tar.gz |
Update mysql_upgrade tests for 5.1
Add "two liner" to mysqld --bootstrap that allows
wo write scripts that can be run both by mysql and mysqld --bootstrap
Remove duplicate create of MySQL system tables
mysql-test/r/mysql_upgrade.result:
Update mysql_upgrade.result for new tables in 5.1
scripts/mysql_system_tables.sql:
Use "delimiter ;;" to make it possible to run the script
both with "mysql" and "mysqld --bootstrap"
scripts/mysql_system_tables_fix.sql:
Remove duplicate stored procedure for creating slow_log
and general_log.
Remove duplicate CREATE of ndb_binlog_index.
Those are already defined in mysql_system_tables.sql
sql/sql_parse.cc:
Make "mysqld --bootstrap skip lines startig with "delimiter"
thus making it possible to write sql scripts containing
stored procedures that can be executed both with "mysql" and
"mysqld --bootstrap"
Diffstat (limited to 'mysql-test/r/mysql_upgrade.result')
-rw-r--r-- | mysql-test/r/mysql_upgrade.result | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/r/mysql_upgrade.result b/mysql-test/r/mysql_upgrade.result index ce4706c6d92..35f29d0ad84 100644 --- a/mysql-test/r/mysql_upgrade.result +++ b/mysql-test/r/mysql_upgrade.result @@ -1,14 +1,20 @@ Run mysql_upgrade once mysql.columns_priv OK mysql.db OK +mysql.event OK mysql.func OK +mysql.general_log OK mysql.help_category OK mysql.help_keyword OK mysql.help_relation OK mysql.help_topic OK mysql.host OK +mysql.ndb_binlog_index OK +mysql.plugin OK mysql.proc OK mysql.procs_priv OK +mysql.servers OK +mysql.slow_log OK mysql.tables_priv OK mysql.time_zone OK mysql.time_zone_leap_second OK @@ -21,14 +27,20 @@ This installation of MySQL is already upgraded to VERSION, use --force if you st Force should run it regardless of wether it's been run before mysql.columns_priv OK mysql.db OK +mysql.event OK mysql.func OK +mysql.general_log OK mysql.help_category OK mysql.help_keyword OK mysql.help_relation OK mysql.help_topic OK mysql.host OK +mysql.ndb_binlog_index OK +mysql.plugin OK mysql.proc OK mysql.procs_priv OK +mysql.servers OK +mysql.slow_log OK mysql.tables_priv OK mysql.time_zone OK mysql.time_zone_leap_second OK @@ -41,14 +53,20 @@ GRANT ALL ON *.* TO mysqltest1@'%'; Run mysql_upgrade with password protected account mysql.columns_priv OK mysql.db OK +mysql.event OK mysql.func OK +mysql.general_log OK mysql.help_category OK mysql.help_keyword OK mysql.help_relation OK mysql.help_topic OK mysql.host OK +mysql.ndb_binlog_index OK +mysql.plugin OK mysql.proc OK mysql.procs_priv OK +mysql.servers OK +mysql.slow_log OK mysql.tables_priv OK mysql.time_zone OK mysql.time_zone_leap_second OK |