trinodb / trino-go-client

Go client for Trino
Apache License 2.0
135 stars 63 forks source link

Support reading float literals returned as strings #90

Closed nineinchnick closed 1 year ago

nineinchnick commented 1 year ago

Trino 428 removed the deprecated parse_decimal_literals_as_double property. Without this, the server to returns decimal literals as strings, not floats. Support reading such values when scanning results.

Ref: https://github.com/trinodb/trino/pull/19166

losipiuk commented 1 year ago

thanks