diff options
author | igor@rurik.mysql.com <> | 2006-05-31 18:10:02 -0700 |
---|---|---|
committer | igor@rurik.mysql.com <> | 2006-05-31 18:10:02 -0700 |
commit | 0585e505995101f479c921db79625b326f631211 (patch) | |
tree | a7218b6f6c71fcca4def61742512d2f7ab662bf8 /mysql-test/t/explain.test | |
parent | 5d8d38ee4c0bb7232fffd1a9dfac08d70788d409 (diff) | |
parent | 1504abcdd5b86eecd2a8eef54b5439a94e3b845e (diff) | |
download | mariadb-git-0585e505995101f479c921db79625b326f631211.tar.gz |
Merge rurik.mysql.com:/home/igor/tmp_merge
into rurik.mysql.com:/home/igor/dev/mysql-5.0-0
Diffstat (limited to 'mysql-test/t/explain.test')
-rw-r--r-- | mysql-test/t/explain.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/explain.test b/mysql-test/t/explain.test index a38771db233..efce0cdf3b5 100644 --- a/mysql-test/t/explain.test +++ b/mysql-test/t/explain.test @@ -15,9 +15,9 @@ explain select * from t1 ignore key (str) where str="foo"; explain select * from t1 use key (str,str) where str="foo"; #The following should give errors ---error 1072 +--error 1176 explain select * from t1 use key (str,str,foo) where str="foo"; ---error 1072 +--error 1176 explain select * from t1 ignore key (str,str,foo) where str="foo"; drop table t1; |