| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- select * from /test/cacheonly where v_int >= 1.1
- /**
- output()
- count(2)
- **/
- ;
- select * from /test/cacheonly where v_int = 1
- /**
- count(1)
- **/
- ;
- select * from /test/cacheonly where v_int > 0
- /**
- count(3)
- **/
- ;
- select * from /test/cacheonly where v_int < 2
- /**
- count(1)
- **/
- ;
- select * from /test/cacheonly where v_int >= 1
- /**
- count(3)
- **/
- ;
- select * from /test/cacheonly where v_int <= 1
- /**
- count(1)
- **/
- ;
- select * from /test/cacheonly where v_int >= 1.1
- /**
- output()
- count(2)
- **/
- ;
- select * from /test/cacheonly where v_int > 1
- /**
- count(2)
- **/
- ;
|