postgresql should be forced to floats if "Float" given

Issue #1567 resolved
Mike Bayer repo owner created an issue

i.e.:

session.query(func.stddev_population(somecol, type_=Float))

should return a floating point and not Decimal. Right now you need to use a Numeric since PGNumeric picks up on that, but PGFloat does not.

Comments (2)

  1. Log in to comment