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