| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #/test/search | group with topo
- /**
- output()
- **/
- ;
- #/test/search | group with ca
- -- 数据转换错误
- /**
- onerror(must, `value field type only support time.Time, int, int64, float64, float32, uint64, uint32`)
- **/
- ;
- #/test/search | print v_int | sum v_int
- -- 结果不对,无结果
- /**
- output()
- **/
- ;
- #/test/search | print v_int | count
- -- 结果不对,无结果
- /**
- output()
- **/
- ;
- #/test/search | count
- -- 结果不对,无结果
- /**
- output()
- **/
- ;
- #/test/search | sum v_int
- -- 结果不对,无结果
- /**
- output()
- **/
- ;
- #/test/search | avg v_float group with ca
- -- 算法值无效,解析阶段传丢,结果不对
- /**
- output()
- **/
- ;
- #/test/search | sum v_int | group with ca
- -- 算法值无效,解析阶段传丢,结果不对
- /**
- output()
- **/
- ;
- #/test/search | avg v_float group by v_bool with ca
- -- 算法值无效,解析阶段传丢,结果不对
- /**
- output()
- **/
- ;
- #/test/search | avg v_float group by v_bool
- -- 算法值无效,解析阶段传丢,结果不对
- /**
- output()
- **/
- ;
- #/test/search | avg v_float | group by v_bool with ca
- -- 算法值无效,解析阶段传丢,结果不对
- /**
- output()
- **/
- ;
- #/test/search | avg v_float | group by v_bool
- -- 算法值无效,解析阶段传丢,结果不对
- /**
- output()
- **/
- ;
|