diff options
author | heikki@hundin.mysql.fi <> | 2004-11-25 00:04:03 +0200 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2004-11-25 00:04:03 +0200 |
commit | 213e61d339d7fe4ed408e74befc4e970d5acdf5f (patch) | |
tree | dda80d87aa8f0dd3770ac608f032141dfa7e48dd /mysql-test/r/lowercase_table3.result | |
parent | 71f31d1c94a9d563ab5b3a8da63f83998aeb2739 (diff) | |
download | mariadb-git-213e61d339d7fe4ed408e74befc4e970d5acdf5f.tar.gz |
lowercase_table3.result:
Correct InnoDB's result output in test; the pseudo-file-extension for InnoDB tables '.InnoDB' was replaced by a more realistic '.ibd' extension
Diffstat (limited to 'mysql-test/r/lowercase_table3.result')
-rw-r--r-- | mysql-test/r/lowercase_table3.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/lowercase_table3.result b/mysql-test/r/lowercase_table3.result index a645e46be9e..8182d07c26b 100644 --- a/mysql-test/r/lowercase_table3.result +++ b/mysql-test/r/lowercase_table3.result @@ -6,5 +6,5 @@ drop table t1; flush tables; CREATE TABLE t1 (a int) ENGINE=INNODB; SELECT * from T1; -ERROR HY000: Can't open file: 'T1.InnoDB' (errno: 1) +ERROR HY000: Can't open file: 'T1.ibd' (errno: 1) drop table t1; |