We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb226cc commit e6fa362Copy full SHA for e6fa362
expression.go
@@ -78,6 +78,8 @@ type StringExpression interface {
78
Like(other interface{}) BooleanExpression
79
Contains(substring string) BooleanExpression
80
Concat(other interface{}) StringExpression
81
+ IfEmpty(altValue interface{}) StringExpression
82
+ IsEmpty() BooleanExpression
83
}
84
85
// UnknownExpression is the interface of an SQL expression with unknown value.
@@ -102,6 +104,8 @@ type UnknownExpression interface {
102
104
103
105
106
107
108
109
110
111
type expression struct {
0 commit comments