stricter checks on FULLTEXT index creating

This commit is contained in:
unknown 2003-10-15 13:40:20 +02:00
commit 845e9f559c
28 changed files with 121 additions and 62 deletions

View file

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