diff options
author | unknown <paul@kite-hub.kitebird.com> | 2004-06-15 15:38:36 -0500 |
---|---|---|
committer | unknown <paul@kite-hub.kitebird.com> | 2004-06-15 15:38:36 -0500 |
commit | ce46f93d9b8a301dc296014047fdcf2c52d4f2af (patch) | |
tree | a8d725d2e34802763b29ee7f113e09157f8a172c /mysql-test/r/fulltext.result | |
parent | e0aa47dcb81bc0b60daa6fd9d4ba2942d0730d4b (diff) | |
download | mariadb-git-ce46f93d9b8a301dc296014047fdcf2c52d4f2af.tar.gz |
Language/consistency edits to error messages
and affected test results.
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index d13c9a9c51c..c86a379cccd 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -253,11 +253,11 @@ KEY tig (ticket), fulltext index tix (inhalt) ); select * from t2 where MATCH inhalt AGAINST (t2.inhalt); -ERROR HY000: Wrong arguments to AGAINST +ERROR HY000: Incorrect arguments to AGAINST select * from t2 where MATCH ticket AGAINST ('foobar'); ERROR HY000: Can't find FULLTEXT index matching the column list select * from t2,t3 where MATCH (t2.inhalt,t3.inhalt) AGAINST ('foobar'); -ERROR HY000: Wrong arguments to MATCH +ERROR HY000: Incorrect arguments to MATCH drop table t1,t2,t3; CREATE TABLE t1 ( id int(11) auto_increment, |