Extend BoolExpression with logical operators.

This commit is contained in:
sub0Zero 2019-03-15 22:02:59 +01:00 committed by zer0sub
parent 8049b2ec01
commit a49c682672
5 changed files with 354 additions and 322 deletions

View file

@ -25,10 +25,10 @@ type SelectStatement interface {
GroupBy(expressions ...Expression) SelectStatement
OrderBy(clauses ...OrderByClause) SelectStatement
Limit(limit int64) SelectStatement
Offset(offset int64) SelectStatement
Distinct() SelectStatement
WithSharedLock() SelectStatement
ForUpdate() SelectStatement
Offset(offset int64) SelectStatement
Comment(comment string) SelectStatement
Copy() SelectStatement
}