diff options
author | unknown <serg@serg.mysql.com> | 2002-04-18 18:44:18 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-04-18 18:44:18 +0000 |
commit | fa14d2e51bd1990cafbc71d70ad2b3a36d159f8d (patch) | |
tree | 3ad18af758595fdc9b8408fe54afa489d9cb87df /mysql-test/t/fulltext.test | |
parent | db9a12039f9c9fe362f8e935c5f5bda99ade847f (diff) | |
download | mariadb-git-fa14d2e51bd1990cafbc71d70ad2b3a36d159f8d.tar.gz |
ftb bug fixed
Diffstat (limited to 'mysql-test/t/fulltext.test')
-rw-r--r-- | mysql-test/t/fulltext.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/fulltext.test b/mysql-test/t/fulltext.test index 616ca7cb081..0334910fe6c 100644 --- a/mysql-test/t/fulltext.test +++ b/mysql-test/t/fulltext.test @@ -118,7 +118,7 @@ select * from t2,t3 where MATCH (t2.inhalt,t3.inhalt) AGAINST ('foobar'); drop table t1,t2,t3; # -# two more bugtests +# three more bugtests # CREATE TABLE t1 ( @@ -130,6 +130,7 @@ CREATE TABLE t1 ( ) TYPE=MyISAM; insert into t1 (title) values ('this is a test'); +select * from t1 where match title against ('test' in boolean mode); update t1 set title='this is A test' where id=1; check table t1; update t1 set title='this test once revealed a bug' where id=1; |