Merge pull request #73 from DevDevious/unsigned-integers

Unsigned integer literal support
This commit is contained in:
go-jet 2021-02-23 14:09:47 +01:00 committed by GitHub
commit 7bafa1ffef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 174 additions and 5 deletions

View file

@ -3,7 +3,7 @@ package mysql
import "github.com/go-jet/jet/v2/internal/jet"
// Expression is common interface for all expressions.
// Can be Bool, Int, Float, String, Date, Time, Timez, Timestamp or Timestampz expressions.
// Can be Bool, Int, Float, String, Date, Time or Timestamp expressions.
type Expression = jet.Expression
// BoolExpression interface