mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/psergey/mysql-4.1-bug9439
This commit is contained in:
@ -357,3 +357,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;
|
||||
|
||||
|
Reference in New Issue
Block a user