Merge branch 'master' into select_json
# Conflicts: # tests/postgres/alltypes_test.go
This commit is contained in:
commit
03af2665ea
5 changed files with 30 additions and 7 deletions
|
|
@ -49,6 +49,11 @@ func Uint32(value uint32) IntegerExpression {
|
|||
return CAST(jet.Uint32(value)).AS_BIGINT()
|
||||
}
|
||||
|
||||
// Uint64 is constructor for 64 bit unsigned integer expressions literals.
|
||||
func Uint64(value uint64) IntegerExpression {
|
||||
return CAST(jet.Uint64(value)).AS_BIGINT()
|
||||
}
|
||||
|
||||
// Float creates new float literal expression
|
||||
var Float = jet.Float
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue