diff options
author | unknown <bell@sanja.is.com.ua> | 2004-07-19 12:07:33 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-07-19 12:07:33 +0300 |
commit | 10d0dca6b4a1be61df17cc017d8073d6543ecf26 (patch) | |
tree | 2925f0f68f3f04abbd4988de5d8909f9a8de854b /mysql-test/r/select.result | |
parent | 9fc19ce8f507c89eed604f9968a897b37b0b065f (diff) | |
download | mariadb-git-10d0dca6b4a1be61df17cc017d8073d6543ecf26.tar.gz |
standard values for table type in SHOW TABLES (BUG#4603)
mysql-test/r/connect.result:
standard values for table type in SHOW TABLES
mysql-test/r/ctype_recoding.result:
standard values for table type in SHOW TABLES
mysql-test/r/drop.result:
standard values for table type in SHOW TABLES
mysql-test/r/greedy_optimizer.result:
fixed results
mysql-test/r/lowercase_table.result:
standard values for table type in SHOW TABLES
mysql-test/r/ps_1general.result:
standard values for table type in SHOW TABLES
mysql-test/r/rename.result:
standard values for table type in SHOW TABLES
mysql-test/r/rpl000009.result:
standard values for table type in SHOW TABLES
mysql-test/r/rpl_error_ignored_table.result:
standard values for table type in SHOW TABLES
mysql-test/r/select.result:
standard values for table type in SHOW TABLES
mysql-test/r/system_mysql_db.result:
standard values for table type in SHOW TABLES
mysql-test/r/view.result:
standard values for table type in SHOW TABLES
sql/sql_show.cc:
standard values for table type in SHOW TABLES
debugging trap
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r-- | mysql-test/r/select.result | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index fa64649dae3..20e65ec09e3 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -2021,15 +2021,15 @@ select period as "Nuvarande period" from t1 group by "Nuvarande period" limit 1; Nuvarande period 9410 show tables; -Tables_in_test Type -t1 table -t2 table -t3 table -t4 table +Tables_in_test table_type +t1 BASE TABLE +t2 BASE TABLE +t3 BASE TABLE +t4 BASE TABLE show tables from test like "s%"; -Tables_in_test (s%) Type +Tables_in_test (s%) table_type show tables from test like "t?"; -Tables_in_test (t?) Type +Tables_in_test (t?) table_type show full columns from t2; Field Type Collation Null Key Default Extra Privileges Comment auto int(11) NULL PRI NULL auto_increment select,insert,update,references |