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

myisam/mi_write.c:
  cleanup
mysql-test/t/fulltext.test:
  after merge fix
This commit is contained in:
unknown
2003-10-22 17:57:09 +02:00
parent 061cbf8734
commit fd85cc84e4
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));