diff options
author | Monty <monty@mariadb.org> | 2018-02-10 14:42:59 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-02-10 14:42:59 +0200 |
commit | a610badb5daf33cffd7a85822d2712eb0beee7b6 (patch) | |
tree | 1cd5819fd1eaf69adcd2ee9669ce304214b945cb /mysql-test/t/select.test | |
parent | a801ba5ce6bda1c2dee41724307bf59f244dda14 (diff) | |
download | mariadb-git-bb-10.2-ext2.tar.gz |
Added Max_index_length and Temporary to SHOW TABLE STATUSbb-10.2-ext2
- Max_index_length is supported by MyISAM and Aria tables.
- Temporary is a placeholder to signal that a table is a
temporary table. For the moment this is always "N", except
"Y" for generated information_schema tables and NULL for
views. Full temporary table support will be done in another task.
(No reason to have to update a lot of result files twice in a row)
Diffstat (limited to 'mysql-test/t/select.test')
-rw-r--r-- | mysql-test/t/select.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/select.test b/mysql-test/t/select.test index e8d5f9fa445..52ef4aa2111 100644 --- a/mysql-test/t/select.test +++ b/mysql-test/t/select.test @@ -2229,7 +2229,7 @@ drop table t1,t2; create table t1 (f1 int not null auto_increment primary key, f2 varchar(10)); create table t11 like t1; insert into t1 values(1,""),(2,""); ---replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X +--replace_column 7 X 8 X 9 X 10 X 11 X 12 X 13 X 14 X 19 X show table status like 't1%'; select 123 as a from t1 where f1 is null; drop table t1,t11; |