| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- select count(*) as count from /test/idpartition where v_int = 1
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/idpartition where v_int > 0
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/idpartition where v_int < 2
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/idpartition where v_int >= 1
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/idpartition where v_int <= 1
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/idpartition where v_int >= 1.1
- /**
- matchcount("count", 0, 1)
- **/
- ;
- select count(*) as count from /test/idpartition where v_int > 1
- /**
- matchcount("count", 0, 1)
- **/
- ;
|