diff options
author | Jimmy Yang <jimmy.yang@oracle.com> | 2011-08-17 02:39:55 -0700 |
---|---|---|
committer | Jimmy Yang <jimmy.yang@oracle.com> | 2011-08-17 02:39:55 -0700 |
commit | d9c3d35437286eac641d1e110f4a5dfe160eb60a (patch) | |
tree | ed93649b8bf12ee3d78ab582bf93d00664216a16 /mysql-test/suite | |
parent | 7abcb1dd087b5ba342f94444d57ac34cdd9bcc27 (diff) | |
download | mariadb-git-d9c3d35437286eac641d1e110f4a5dfe160eb60a.tar.gz |
In innobase_format_name() we should call innobase_convert_name() with
"!is_index_name" instead of "is_index_name", so the table name in the
error message would not be formated as index name.
Diffstat (limited to 'mysql-test/suite')
-rw-r--r-- | mysql-test/suite/innodb/r/innodb_corrupt_bit.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/innodb/r/innodb_corrupt_bit.result b/mysql-test/suite/innodb/r/innodb_corrupt_bit.result index 4253adc93aa..c88e1ed2504 100644 --- a/mysql-test/suite/innodb/r/innodb_corrupt_bit.result +++ b/mysql-test/suite/innodb/r/innodb_corrupt_bit.result @@ -45,7 +45,7 @@ select z from corrupt_bit_test_ā; ERROR HY000: Incorrect key file for table 'corrupt_bit_test_ā'; try to repair it show warnings; Level Code Message -Warning 179 InnoDB: Index "idxē" for table "test/corrupt_bit_test_@1s" is marked as corrupted +Warning 179 InnoDB: Index "idxē" for table "test"."corrupt_bit_test_ā" is marked as corrupted Error 1034 Incorrect key file for table 'corrupt_bit_test_ā'; try to repair it insert into corrupt_bit_test_ā values (10001, "a", 20001, 20001); select * from corrupt_bit_test_ā use index(primary) where a = 10001; |