| 123456789101112131415161718192021222324252627282930 |
- select count(*) as count from /test/prepare where v_float >= 1.1
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/prepare where v_float > 1
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/prepare where v_float = 1.1
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/prepare where v_float < 2
- /**
- matchcount("count", 3, 1)
- **/
- ;
- select count(*) as count from /test/prepare where v_float <= 1.1
- /**
- matchcount("count", 3, 1)
- **/
- ;
|