1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge fix for BUG#9439 from 4.1

mysql-test/r/show_check.result:
  Auto merged
mysql-test/t/show_check.test:
  Auto merged
This commit is contained in:
unknown
2005-04-17 20:54:31 +04:00
2 changed files with 32 additions and 0 deletions

View File

@ -365,3 +365,14 @@ SHOW CREATE TABLE t1;
ALTER TABLE t1 ENGINE=MEMORY;
SHOW CREATE TABLE t1;
DROP TABLE t1;
# Test for BUG#9439 "Reporting wrong datatype for sub_part on show index"
CREATE TABLE t1(
field1 text NOT NULL,
PRIMARY KEY(field1(1000))
);
--enable_metadata
show index from t1;
--disable_metadata
drop table t1;