diff options
author | Sergey Vojtovich <svoj@sun.com> | 2010-04-01 16:22:36 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2010-04-01 16:22:36 +0400 |
commit | eb450e18a51db7c78b6feb71e8d7911ee7aabefa (patch) | |
tree | 7eeab4ed47c00cd860604116b69b94e2c2e3bbc0 /mysql-test/suite/innodb/r | |
parent | 56ce1fc0d1e85834044b250e27372e4bb190cd5b (diff) | |
download | mariadb-git-eb450e18a51db7c78b6feb71e8d7911ee7aabefa.tar.gz |
Applying InnoDB snapshot
Detailed revision comments:
r6799 | jyang | 2010-03-11 09:59:42 +0200 (Thu, 11 Mar 2010) | 5 lines
branches/zip: Once change in bug #47621 merges into zip branch,
zip only test innodb_bug44571 needs to be updated to reflect the
column name change would be successful be done in InnoDB as well.
Diffstat (limited to 'mysql-test/suite/innodb/r')
-rw-r--r-- | mysql-test/suite/innodb/r/innodb_bug44571.result | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mysql-test/suite/innodb/r/innodb_bug44571.result b/mysql-test/suite/innodb/r/innodb_bug44571.result index 36374edcb3e..7ee7820a02d 100644 --- a/mysql-test/suite/innodb/r/innodb_bug44571.result +++ b/mysql-test/suite/innodb/r/innodb_bug44571.result @@ -2,8 +2,7 @@ CREATE TABLE bug44571 (foo INT) ENGINE=InnoDB; ALTER TABLE bug44571 CHANGE foo bar INT; ALTER TABLE bug44571 ADD INDEX bug44571b (foo); ERROR 42000: Key column 'foo' doesn't exist in table -ALTER TABLE bug44571 ADD INDEX bug44571b (bar); -ERROR HY000: Incorrect key file for table 'bug44571'; try to repair it -CREATE INDEX bug44571b ON bug44571 (bar); -ERROR HY000: Incorrect key file for table 'bug44571'; try to repair it +ALTER TABLE bug44571 ADD INDEX bug44571c (bar); +DROP INDEX bug44571c ON bug44571; +CREATE INDEX bug44571c ON bug44571 (bar); DROP TABLE bug44571; |