You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like currently all values are being cast to float64, is it possible to return values from a query without casting? With all null values being coalesced to 0 it's impossible to get a minimum value in the dataset, which breaks some use cases.
The text was updated successfully, but these errors were encountered:
There is a limitation on the gocql level - the MapScan method doesn't support nil values, unfortunately. apache/cassandra-gocql-driver#1699
There is a possible workaround mentioned in that issue - I'll try to figure it out.
It looks like currently all values are being cast to float64, is it possible to return values from a query without casting? With all null values being coalesced to 0 it's impossible to get a minimum value in the dataset, which breaks some use cases.
The text was updated successfully, but these errors were encountered: