Skip to content

Commit e5d79a0

Browse files
Merge branch 'mysql-5.6' into mysql-5.7
2 parents 4a041b9 + bc56e67 commit e5d79a0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

mysql-test/suite/innodb/r/innodb-alter.result

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -836,8 +836,7 @@ id int(11) NOT NULL AUTO_INCREMENT,
836836
body text COLLATE utf8_unicode_ci,
837837
PRIMARY KEY (id)
838838
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8
839-
COLLATE=utf8_unicode_ci
840-
ROW_FORMAT=COMPRESSED;
839+
COLLATE=utf8_unicode_ci;
841840
ALTER TABLE notes ADD FULLTEXT INDEX index_ft_body (body(255));
842841
Warnings:
843842
Warning 124 InnoDB rebuilding table to add column FTS_DOC_ID

mysql-test/suite/innodb/t/innodb-alter.test

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,7 @@ CREATE TABLE notes (
475475
body text COLLATE utf8_unicode_ci,
476476
PRIMARY KEY (id)
477477
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8
478-
COLLATE=utf8_unicode_ci
479-
ROW_FORMAT=COMPRESSED;
478+
COLLATE=utf8_unicode_ci;
480479

481480
ALTER TABLE notes ADD FULLTEXT INDEX index_ft_body (body(255));
482481
DROP INDEX index_ft_body ON notes;

0 commit comments

Comments
 (0)