select * from /test/mpartition where v_double >= 1.1234567890123456 /** count(3) **/ ; select * from /test/mpartition where v_smalldouble >= 1.123456 /** count(3) **/ ; select count(*) as count from /test/mpartition where v_double > 1 /** matchcount("count", 3, 1) **/ ; select count(*) as count from /test/mpartition where v_double = 1.1234567890123456 /** matchcount("count", 3, 1) **/ ; select count(*) as count from /test/mpartition where v_double < 2 /** matchcount("count", 3, 1) **/ ; select count(*) as count from /test/mpartition where v_double <= 1.1234567890123456 /** matchcount("count", 3, 1) **/ ;