summaryrefslogtreecommitdiff
path: root/mysql-test/r/fulltext.result
diff options
context:
space:
mode:
authorunknown <paul@kite-hub.kitebird.com>2004-06-15 15:38:36 -0500
committerunknown <paul@kite-hub.kitebird.com>2004-06-15 15:38:36 -0500
commitce46f93d9b8a301dc296014047fdcf2c52d4f2af (patch)
treea8d725d2e34802763b29ee7f113e09157f8a172c /mysql-test/r/fulltext.result
parente0aa47dcb81bc0b60daa6fd9d4ba2942d0730d4b (diff)
downloadmariadb-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.result4
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,