1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

standard values for table type in SHOW TABLES (BUG#4603)

This commit is contained in:
bell@sanja.is.com.ua
2004-07-19 12:07:33 +03:00
parent 849de1e629
commit c5a84657a8
13 changed files with 168 additions and 164 deletions

View File

@@ -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