| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- -- ============================================================
- -- string 前缀/全文搜索测试
- -- ============================================================
- -- 1. 前缀搜索(s_name like)
- select * from /test/aaa/test_search where s_name=^'search_int'
- /**
- output()
- **/
- ;
- -- 2. 前缀搜索 - 单个匹配
- select * from /test/aaa/test_search where s_name=^'search_string'
- /**
- output()
- **/
- ;
- -- 3. 前缀搜索 - 无匹配
- select * from /test/aaa/test_search where s_name=^'zzz_not_exist'
- /**
- output()
- count(0)
- **/
- ;
- -- 4. 全文搜索 - autosearch(类无 autosearch,跳过)
- -- select * from /test/aaa/test_search where s_text search 'test'
- -- onerror(continue)
- ;
- -- 5. 全文搜索 - 中文(类无 autosearch,跳过)
- -- select * from /test/aaa/test_search where s_text search 'hello'
- -- onerror(continue)
- ;
- -- 6. 前缀搜索 - 精确前缀
- select * from /test/aaa/test_search where s_name=^'search_neg'
- /**
- output()
- **/
- ;
|