diff options
author | unknown <paul@snake-hub.snake.net> | 2006-01-28 19:44:51 -0600 |
---|---|---|
committer | unknown <paul@snake-hub.snake.net> | 2006-01-28 19:44:51 -0600 |
commit | 5c142d365885352df55c7a1ea748f5e7296fda02 (patch) | |
tree | 3bbe62c10d66606491ba38859848fe1e76d16494 /sql/sql_show.cc | |
parent | ab55c1eaef4efd0a4f8c457e8b18af64a28d3650 (diff) | |
download | mariadb-git-5c142d365885352df55c7a1ea748f5e7296fda02.tar.gz |
information_schema_db.result, information_schema.result:
Fix test result.
table.h, sql_show.cc:
Put I_S tables in lexical order.
sql/sql_show.cc:
Put I_S tables in lexical order.
sql/table.h:
Put I_S tables in lexical order.
mysql-test/r/information_schema.result:
Fix test result.
mysql-test/r/information_schema_db.result:
Fix test result.
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r-- | sql/sql_show.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc index 1f776d815df..1b854a005ce 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -4198,12 +4198,12 @@ ST_SCHEMA_TABLE schema_tables[]= fill_schema_table_privileges, 0, 0, -1, -1, 0}, {"TRIGGERS", triggers_fields_info, create_schema_table, get_all_tables, make_old_format, get_schema_triggers_record, 5, 6, 0}, + {"USER_PRIVILEGES", user_privileges_fields_info, create_schema_table, + fill_schema_user_privileges, 0, 0, -1, -1, 0}, {"VARIABLES", variables_fields_info, create_schema_table, fill_variables, make_old_format, 0, -1, -1, 1}, {"VIEWS", view_fields_info, create_schema_table, get_all_tables, 0, get_schema_views_record, 1, 2, 0}, - {"USER_PRIVILEGES", user_privileges_fields_info, create_schema_table, - fill_schema_user_privileges, 0, 0, -1, -1, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0} }; |