24.double2.mql 480 B

123456789101112131415161718192021222324252627282930313233343536
  1. select * from /test/cacheonly where v_double >= 1.1234567890123456
  2. /**
  3. count(3)
  4. **/
  5. ;
  6. select * from /test/cacheonly where v_smalldouble >= 1.123456
  7. /**
  8. count(3)
  9. **/
  10. ;
  11. select * from /test/cacheonly where v_double > 1
  12. /**
  13. count(3)
  14. **/
  15. ;
  16. select * from /test/cacheonly where v_double = 1.1234567890123456
  17. /**
  18. count(3)
  19. **/
  20. ;
  21. select * from /test/cacheonly where v_double < 2
  22. /**
  23. count(3)
  24. **/
  25. ;
  26. select * from /test/cacheonly where v_double <= 1.1234567890123456
  27. /**
  28. count(3)
  29. **/
  30. ;