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
gocql data parsing from scylla defines 'varint' scylla type as 'big.Int' go type.
big.Int not compareble.
Not compareble types can`t be as a maps key.
gocql got out of the situation by create pointer on big.Int.
This led to the fact that a maps key - pointer, not a big.Int.
With 'decimal' same situation because gocql defines 'decimal' as inf.Dec go type, which contains big.Int.
The text was updated successfully, but these errors were encountered:
gocql data parsing from scylla defines 'varint' scylla type as 'big.Int' go type.
big.Int not compareble.
Not compareble types can`t be as a maps key.
gocql got out of the situation by create pointer on big.Int.
This led to the fact that a maps key - pointer, not a big.Int.
With 'decimal' same situation because gocql defines 'decimal' as inf.Dec go type, which contains big.Int.
The text was updated successfully, but these errors were encountered: