fulltext_var.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Fulltext configurable parameters
  3. #
  4. --disable_warnings
  5. drop table if exists t1;
  6. --enable_warnings
  7. show variables like "ft_%";
  8. create table t1 (b text not null);
  9. insert t1 values ('aaaaaa bbbbbb cccccc');
  10. insert t1 values ('bbbbbb cccccc');
  11. insert t1 values ('aaaaaa cccccc');
  12. select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
  13. -- error 1229
  14. set ft_boolean_syntax=' +-><()~*:""&|';
  15. set global ft_boolean_syntax=' +-><()~*:""&|';
  16. select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
  17. set global ft_boolean_syntax='@ -><()~*:""&|';
  18. select * from t1 where match b against ('+aaaaaa bbbbbb' in boolean mode);
  19. select * from t1 where match b against ('+aaaaaa @bbbbbb' in boolean mode);
  20. -- error 1231
  21. set global ft_boolean_syntax='@ -><()~*:""@|';
  22. -- error 1231
  23. set global ft_boolean_syntax='+ -><()~*:""@!|';
  24. drop table t1;
  25. # End of 4.1 tests