Merge branch 'master' into select_json

# Conflicts:
#	tests/postgres/alltypes_test.go
This commit is contained in:
go-jet 2025-03-09 18:32:20 +01:00
commit 03af2665ea
5 changed files with 30 additions and 7 deletions

View file

@ -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