20valid.mql 658 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #/test/search
  2. /**
  3. count(3)
  4. match(v_varchar, "*Abc*", v_text, `hello word 2003 123-456-789 中华人民共和国是中国的唯一合法政府,台湾是中国一部分。 Mercury, Venus2,Earch%。Mars$Uranus CeresAndJupiterOrSaturn #Neptune Pluto_Charon"\""`, 1)
  5. **/
  6. ;
  7. #/test/search | v_varchar=='*abc*'
  8. /**
  9. count(0)
  10. **/
  11. ;
  12. #/test/search | v_varchar=='*Abc*'
  13. /**
  14. count(1)
  15. **/
  16. ;
  17. #/test/search | v_varchar='*ABC*'
  18. /**
  19. output()
  20. count(1)
  21. **/
  22. ;
  23. #/test/search | v_text='Cassan*'
  24. /**
  25. count(1)
  26. **/
  27. ;
  28. select class, id from /test/search
  29. /**
  30. output()
  31. **/
  32. ;
  33. #id='15082740223537596870'
  34. /**
  35. count(1)
  36. **/
  37. ;
  38. #/test/ | id='15082740223537596870'
  39. /**
  40. count(1)
  41. **/
  42. ;