Open
Description
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.