diff options
author | unknown <bell@sanja.is.com.ua> | 2004-10-10 13:15:14 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-10-10 13:15:14 +0300 |
commit | 8b026230fff314a3a36132024611138cc2b605ae (patch) | |
tree | 19e2e611cc802c0d0aa54a516190cdc981185b69 /mysql-test/r/system_mysql_db.result | |
parent | 917a3474dee81e898092ff769f4030e9d4acf7c5 (diff) | |
download | mariadb-git-8b026230fff314a3a36132024611138cc2b605ae.tar.gz |
showing table type now is controled by new parameter 'FULL' of SHOW TABLES command (SHOW FULL TABLES) (as it was decided on last dev conf)
mysql-test/r/connect.result:
returned SHOW TABLES default behaviour
mysql-test/r/ctype_recoding.result:
returned SHOW TABLES default behaviour
mysql-test/r/drop.result:
returned SHOW TABLES default behaviour
mysql-test/r/lowercase_table.result:
returned SHOW TABLES default behaviour
mysql-test/r/rename.result:
returned SHOW TABLES default behaviour
mysql-test/r/rpl000009.result:
returned SHOW TABLES default behaviour
mysql-test/r/rpl_error_ignored_table.result:
returned SHOW TABLES default behaviour
mysql-test/r/select.result:
returned SHOW TABLES default behaviour
mysql-test/r/sp.result:
returned SHOW TABLES default behaviour
mysql-test/r/system_mysql_db.result:
returned SHOW TABLES default behaviour
mysql-test/r/view.result:
test of new parameter od SHOW TABLES and default behaviour without parameter
mysql-test/t/view.test:
test of new parameter od SHOW TABLES and default behaviour without parameter
sql/mysql_priv.h:
parameter added to mysqld_show_tables
sql/sql_parse.cc:
parameter added to mysqld_show_tables
sql/sql_show.cc:
showing table type now is controled by new parameter 'FULL' of SHOW TABLES command (SHOW FULL TABLES)
sql/sql_yacc.yy:
showing table type now is controled by new parameter 'FULL' of SHOW TABLES command (SHOW FULL TABLES)
Diffstat (limited to 'mysql-test/r/system_mysql_db.result')
-rw-r--r-- | mysql-test/r/system_mysql_db.result | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/mysql-test/r/system_mysql_db.result b/mysql-test/r/system_mysql_db.result index 1b5fc4f8b27..35d7a78ab56 100644 --- a/mysql-test/r/system_mysql_db.result +++ b/mysql-test/r/system_mysql_db.result @@ -1,21 +1,21 @@ show tables; -Tables_in_db table_type -columns_priv BASE TABLE -db BASE TABLE -func BASE TABLE -help_category BASE TABLE -help_keyword BASE TABLE -help_relation BASE TABLE -help_topic BASE TABLE -host BASE TABLE -proc BASE TABLE -tables_priv BASE TABLE -time_zone BASE TABLE -time_zone_leap_second BASE TABLE -time_zone_name BASE TABLE -time_zone_transition BASE TABLE -time_zone_transition_type BASE TABLE -user BASE TABLE +Tables_in_db +columns_priv +db +func +help_category +help_keyword +help_relation +help_topic +host +proc +tables_priv +time_zone +time_zone_leap_second +time_zone_name +time_zone_transition +time_zone_transition_type +user show create table db; Table Create Table db CREATE TABLE `db` ( @@ -134,4 +134,4 @@ columns_priv CREATE TABLE `columns_priv` ( PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges' show tables; -Tables_in_test table_type +Tables_in_test |