1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MATCH ... AGAINST ("..." WITH QUERY EXPANSION) syntax

This commit is contained in:
serg@serg.mylan
2003-10-22 17:57:09 +02:00
parent 85942f14f4
commit df69309593
13 changed files with 47 additions and 56 deletions

View File

@ -130,9 +130,9 @@ select * from t2 having MATCH inhalt AGAINST ('foobar');
# check of fulltext errors
#
--error 1279
--error 1280
CREATE TABLE t3 (t int(11),i text,fulltext tix (t,i));
--error 1279
--error 1280
CREATE TABLE t3 (t int(11),i text,
j varchar(200) CHARACTER SET latin2,
fulltext tix (i,j));