diff options
author | unknown <serg@serg.mylan> | 2003-10-15 13:40:20 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-10-15 13:40:20 +0200 |
commit | 845e9f559ce2f06f1ad0c6f8fbfda18f85eb87ea (patch) | |
tree | 7ca1709a625f0a7e152f5e3e37eba61382ab851e /mysql-test/t/fulltext.test | |
parent | b192ab5edc45bf221f99ed53ce4d975160d830fa (diff) | |
download | mariadb-git-845e9f559ce2f06f1ad0c6f8fbfda18f85eb87ea.tar.gz |
stricter checks on FULLTEXT index creating
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r-- | mysql-test/t/fulltext.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 5e5d64ced82..04b0c1e6afd 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -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, |