18fullsearch.mql 540 B

123456789101112131415161718192021222324252627282930
  1. select count(*) as count from /test/idpartition where v_text='hello'
  2. /**
  3. matchcount("count", 1, 1)
  4. **/
  5. ;
  6. select count(*) as count from /test/idpartition where v_text='2003'
  7. /**
  8. matchcount("count", 1, 1)
  9. **/
  10. ;
  11. select count(*) as count from /test/idpartition where v_text='123-456-789'
  12. /**
  13. matchcount("count", 1, 1)
  14. **/
  15. ;
  16. select count(*) as count from /test/idpartition where v_text='中国'
  17. /**
  18. matchcount("count", 1, 1)
  19. **/
  20. ;
  21. select count(*) as count from /test/idpartition where v_text='magnitude'
  22. /**
  23. matchcount("count", 1, 1)
  24. **/
  25. ;