30.fullsearch2.mql 365 B

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