alaisi / postgres-async-driver

Asynchronous PostgreSQL Java driver
Apache License 2.0
287 stars 38 forks source link

Support Numeric Conversion from Object to Double #27

Closed thoughtmanifest closed 8 years ago

thoughtmanifest commented 8 years ago

This resolves issue #26 as well as adds support for Arrays of Numeric Type

alaisi commented 8 years ago

Thanks for the contribution. :)

Numeric is exact so it would be better to map it to BigDecimal. Otherwise the PR is ok for merge.

https://www.postgresql.org/docs/current/static/datatype-numeric.html

alaisi commented 8 years ago

Merged, thanks!