mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
2218bce9cc
Added new big select test mysql-test/r/rpl000004.a.result: Cleanup mysql-test/r/show_check.result: Cleanup mysql-test/r/shw000001.result: Cleanup mysql-test/t/fulltext_multi.test: Cleanup mysql-test/t/fulltext_order_by.test: Cleanup mysql-test/t/rpl000001.test: Cleanup mysql-test/t/rpl000002.test: Cleanup mysql-test/t/rpl000003.test: Cleanup mysql-test/t/rpl000004.test: Cleanup mysql-test/t/rpl000005.test: Cleanup mysql-test/t/rpl000006.test: Cleanup mysql-test/t/rpl000007.test: Cleanup mysql-test/t/rpl000008.test: Cleanup mysql-test/t/rpl000009.test: Cleanup mysql-test/t/rpl000010.test: Cleanup mysql-test/t/rpl000011.test: Cleanup mysql-test/t/rpl000012.test: Cleanup mysql-test/t/rpl000013.test: Cleanup mysql-test/t/rpl000014.test: Cleanup mysql-test/t/rpl000015.test: Cleanup mysql-test/t/rpl000016.test: Cleanup mysql-test/t/sel000001.test: Cleanup mysql-test/t/sel000002.test: Cleanup mysql-test/t/sel000003.test: Cleanup mysql-test/t/sel000031.test: Cleanup mysql-test/t/sel000032.test: Cleanup mysql-test/t/sel000033.test: Cleanup mysql-test/t/sel000100.test: Cleanup mysql-test/t/show_check.test: Cleanup mysql-test/t/shw000001.test: Cleanup
21 lines
591 B
Text
21 lines
591 B
Text
# several FULLTEXT indexes in one table test
|
|
use test;
|
|
DROP TABLE IF EXISTS t1;
|
|
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, MATCH b AGAINST ('lala lkjh') FROM t1;
|
|
SELECT a, MATCH c AGAINST ('lala lkjh') FROM t1;
|
|
SELECT a, MATCH b,c AGAINST ('lala lkjh') FROM t1;
|
|
drop table t1;
|