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/lowercase_table.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/lowercase_table.result')
-rw-r--r-- | mysql-test/r/lowercase_table.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/lowercase_table.result b/mysql-test/r/lowercase_table.result index f820591cfcf..d400dcd9795 100644 --- a/mysql-test/r/lowercase_table.result +++ b/mysql-test/r/lowercase_table.result @@ -24,9 +24,9 @@ RENAME TABLE T1 TO T2; ALTER TABLE T2 ADD new_col int not null; ALTER TABLE T2 RENAME T3; show tables like 't_'; -Tables_in_test (t_) Type -t3 table -t4 table +Tables_in_test (t_) table_type +t3 BASE TABLE +t4 BASE TABLE drop table t3,t4; create table t1 (a int); select count(*) from T1; @@ -57,4 +57,4 @@ select C.a, c.a from t1 c, t2 C; ERROR 42000: Not unique table/alias: 'C' drop table t1, t2; show tables; -Tables_in_test Type +Tables_in_test table_type |