30group.mql 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. #/test/search | group with topo
  2. /**
  3. output()
  4. **/
  5. ;
  6. #/test/search | group with ca
  7. -- 数据转换错误
  8. /**
  9. onerror(must, `value field type only support time.Time, int, int64, float64, float32, uint64, uint32`)
  10. **/
  11. ;
  12. #/test/search | print v_int | sum v_int
  13. -- 结果不对,无结果
  14. /**
  15. output()
  16. **/
  17. ;
  18. #/test/search | print v_int | count
  19. -- 结果不对,无结果
  20. /**
  21. output()
  22. **/
  23. ;
  24. #/test/search | count
  25. -- 结果不对,无结果
  26. /**
  27. output()
  28. **/
  29. ;
  30. #/test/search | sum v_int
  31. -- 结果不对,无结果
  32. /**
  33. output()
  34. **/
  35. ;
  36. #/test/search | avg v_float group with ca
  37. -- 算法值无效,解析阶段传丢,结果不对
  38. /**
  39. output()
  40. **/
  41. ;
  42. #/test/search | sum v_int | group with ca
  43. -- 算法值无效,解析阶段传丢,结果不对
  44. /**
  45. output()
  46. **/
  47. ;
  48. #/test/search | avg v_float group by v_bool with ca
  49. -- 算法值无效,解析阶段传丢,结果不对
  50. /**
  51. output()
  52. **/
  53. ;
  54. #/test/search | avg v_float group by v_bool
  55. -- 算法值无效,解析阶段传丢,结果不对
  56. /**
  57. output()
  58. **/
  59. ;
  60. #/test/search | avg v_float | group by v_bool with ca
  61. -- 算法值无效,解析阶段传丢,结果不对
  62. /**
  63. output()
  64. **/
  65. ;
  66. #/test/search | avg v_float | group by v_bool
  67. -- 算法值无效,解析阶段传丢,结果不对
  68. /**
  69. output()
  70. **/
  71. ;