Index lengths not retrieved using drizzledump
Bug #651948 reported by
Andrew Hutchings
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Drizzle |
Fix Released
|
High
|
Andrew Hutchings | ||
7.0 |
Fix Released
|
High
|
Andrew Hutchings |
Bug Description
drizzle> show create table t1\G
*******
Table: t1
Create Table: CREATE TABLE `t1` (
`a` INT DEFAULT NULL,
`b` TEXT COLLATE utf8_general_ci,
KEY `b` (`b`(20))
) ENGINE=InnoDB COLLATE = utf8_general_ci
1 row in set (0 sec)
Drizzledump:
DROP TABLE IF EXISTS `t1`;
CREATE TABLE `t1` (
`a` INT DEFAULT NULL,
`b` TEXT COLLATE utf8_general_ci DEFAULT NULL,
KEY `b` (`b`)
) ENGINE=InnoDB COLLATE = utf8_general_ci;
Related branches
lp://staging/~linuxjedi/drizzle/drizzle-bug-651948
- Drizzle Merge Team: Pending requested
-
Diff: 118 lines (+20/-5)6 files modifiedclient/drizzledump_data.cc (+2/-0)
client/drizzledump_data.h (+1/-0)
client/drizzledump_drizzle.cc (+2/-1)
client/drizzledump_mysql.cc (+1/-0)
plugin/schema_dictionary/index_parts.cc (+13/-3)
plugin/schema_dictionary/tests/r/data_dictionary.result (+1/-1)
Changed in drizzle: | |
status: | Triaged → Fix Committed |
Changed in drizzle: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.