mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#12770 DESC cannot display the info. about temporary table
Bug#14387 SHOW COLUMNS doesn't work on temporary tables. Bug#15224 SHOW INDEX from temporary table doesn't work. Restore thd->temporary_tables to be able to process temporary tables(only for 'show index' & 'show columns'). This should be changed when processing of temporary tables for I_S tables will be done.
This commit is contained in:
@ -1056,3 +1056,14 @@ where table_name="v1";
|
||||
table_type
|
||||
VIEW
|
||||
drop view v1;
|
||||
create temporary table t1(f1 int, index(f1));
|
||||
show columns from t1;
|
||||
Field Type Null Key Default Extra
|
||||
f1 int(11) YES MUL NULL
|
||||
describe t1;
|
||||
Field Type Null Key Default Extra
|
||||
f1 int(11) YES MUL NULL
|
||||
show indexes from t1;
|
||||
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
|
||||
t1 1 f1 1 f1 A NULL NULL NULL YES BTREE
|
||||
drop table t1;
|
||||
|
@ -748,3 +748,14 @@ drop table t1;
|
||||
select table_type from information_schema.tables
|
||||
where table_name="v1";
|
||||
drop view v1;
|
||||
|
||||
#
|
||||
# Bug #14387 SHOW COLUMNS doesn't work on temporary tables
|
||||
# Bug #15224 SHOW INDEX from temporary table doesn't work
|
||||
# Bug #12770 DESC cannot display the info. about temporary table
|
||||
#
|
||||
create temporary table t1(f1 int, index(f1));
|
||||
show columns from t1;
|
||||
describe t1;
|
||||
show indexes from t1;
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user