mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
stricter checks on FULLTEXT index creating
This commit is contained in:
parent
b192ab5edc
commit
845e9f559c
28 changed files with 121 additions and 62 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue