add Min() and Max() for DateExpression

This commit is contained in:
Qishuai Liu 2024-09-11 18:45:31 +09:00
parent 2a5c602f5e
commit e01ed0b787
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,8 @@ type ArrayExpression interface {
type DateExpression interface {
Expression
Min() UnknownExpression
Max() UnknownExpression
}
// UnknownExpression is the interface of an SQL expression with unknown value.