1.test.mql 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. --delete from /test/alert_status with version
  2. -- ;
  3. -- SELECT
  4. -- *
  5. -- FROM
  6. -- /test/alert_status
  7. -- where tags='mytag6'
  8. -- /**
  9. -- output()
  10. -- **/
  11. -- ;
  12. -- delete from /test/alert_status where tags='mytag6'
  13. -- ;
  14. -- SELECT
  15. -- *
  16. -- FROM
  17. -- /test/alert_status limit -1
  18. -- /**
  19. -- output()
  20. -- **/
  21. -- ;
  22. -- select prom from /test/bucketpromdb
  23. -- /**
  24. -- output()
  25. -- **/
  26. -- ;
  27. -- delete prom from /test/bucketpromdb
  28. -- ;
  29. -- select prom from /test/bucketpromdb
  30. -- /**
  31. -- output()
  32. -- **/
  33. -- ;
  34. ;
  35. -- insert into /test/basic2 (v_varchar, v_text, v_int, v_bigint, v_float, v_double, v_smalldouble)
  36. -- values (
  37. -- ?,
  38. -- 'hello word, 2003 123-456-789 中华人民共和国是中国的唯一合法政府,台湾是中国一部分。 Mercury, Venus2,Earch%。Mars$Uranus CeresAndJupiterOrSaturn #Neptune Pluto_Charon"\""',
  39. -- 1009999,
  40. -- 100000000999999999,
  41. -- 1.0099991,
  42. -- 1.009999123456789,
  43. -- 1.00999912345)
  44. -- /**
  45. -- parallel(100)
  46. -- loop(1000)
  47. -- params("perf test ...1 Bytes... 00009999")
  48. -- **/
  49. ;
  50. select * from /test/basic2 limit -1
  51. /**
  52. output()
  53. **/
  54. ;
  55. delete
  56. from
  57. /test/basic2
  58. where
  59. name='10403727673678528579'
  60. ;