mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
25
mysql-test/main/fulltext_multi.test
Normal file
25
mysql-test/main/fulltext_multi.test
Normal file
@ -0,0 +1,25 @@
|
||||
# several FULLTEXT indexes in one table test
|
||||
--disable_warnings
|
||||
DROP TABLE IF EXISTS t1;
|
||||
--enable_warnings
|
||||
|
||||
CREATE TABLE t1 (
|
||||
a int(11) NOT NULL auto_increment,
|
||||
b text,
|
||||
c varchar(254) default NULL,
|
||||
PRIMARY KEY (a),
|
||||
FULLTEXT KEY bb(b),
|
||||
FULLTEXT KEY cc(c),
|
||||
FULLTEXT KEY a(b,c)
|
||||
);
|
||||
|
||||
INSERT INTO t1 VALUES (1,'lala lolo lili','oooo aaaa pppp');
|
||||
INSERT INTO t1 VALUES (2,'asdf fdsa','lkjh fghj');
|
||||
INSERT INTO t1 VALUES (3,'qpwoei','zmxnvb');
|
||||
|
||||
SELECT a, round(MATCH b AGAINST ('lala lkjh'),5) FROM t1;
|
||||
SELECT a, round(MATCH c AGAINST ('lala lkjh'),5) FROM t1;
|
||||
SELECT a, round(MATCH b,c AGAINST ('lala lkjh'),5) FROM t1;
|
||||
drop table t1;
|
||||
|
||||
# End of 4.1 tests
|
Reference in New Issue
Block a user