Floats.sql 226 B

12345678910
  1. /* syntax version 1 */
  2. select topfreq(x,10,10) from (
  3. select frombytes(tobytes(-0.0),Double) as x
  4. union all
  5. select frombytes(tobytes(+0.0),Double) as x
  6. union all
  7. select Double("nan") as x
  8. union all
  9. select Double("nan") as x
  10. )