1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fixed fulltext after merge from 3.23.45

First (incomplete) version of transaction and as3ap tests.
This commit is contained in:
monty@hundin.mysql.fi
2001-11-22 17:55:18 +02:00
parent 9265a4df45
commit a66ddaf8ba
16 changed files with 1031 additions and 87 deletions

View File

@ -56,6 +56,13 @@ Only MyISAM tables support collections 2
Function MATCH ... AGAINST() is used to do a search 0
Full-text search in MySQL implements vector space model 0
delete from t1 where a like "MySQL%";
update t1 set a='some test foobar' where MATCH a,b AGAINST ('model');
delete from t1 where MATCH(a,b) AGAINST ("indexes");
select * from t1;
a b
Only MyISAM tables support collections
Function MATCH ... AGAINST() is used to do a search
some test foobar implements vector space model
drop table t1;
CREATE TABLE t1 (
id int(11),