dongzhiyong8577 2018-10-30 14:52
浏览 80

Cassandra十进制的Golang类型

Sorry for asking this question but after being tired am writing it here.

I am not able to map any variable type of Golang to Cassandra's Decimal type, which is multi precision

I used interface {}, which works so long as I don't place value in the variable. The moment I do, it has issue

  • 写回答

2条回答 默认 最新

  • dpm91915 2018-10-30 15:23
    关注

    https://github.com/gocql/gocql/blob/master/helpers.go

    As per this link I found that inf.Dec type of Golang maps to Cassandra's Decimal

    var decimal inf.Dec
    

    or

    decimal := inf.NewDec(1, 0)
    
    评论

报告相同问题?