Reintroduce Uint64 literal constructor for postgres dialect.
This commit is contained in:
parent
7047de44a9
commit
33c1d9e663
4 changed files with 24 additions and 1 deletions
|
|
@ -49,6 +49,11 @@ func TestUint32(t *testing.T) {
|
|||
assertSerialize(t, Uint32(val), `$1::bigint`, val)
|
||||
}
|
||||
|
||||
func TestUint64(t *testing.T) {
|
||||
val := uint32(math.MaxUint32)
|
||||
assertSerialize(t, Uint32(val), `$1::bigint`, val)
|
||||
}
|
||||
|
||||
func TestFloat(t *testing.T) {
|
||||
assertSerialize(t, Float(12.34), `$1`, float64(12.34))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue