17prefix.mql 531 B

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