(s string)
| 227 | } |
| 228 | |
| 229 | func (b exprSQLBuilder) writeString(s string) { |
| 230 | _, _ = b.WriteString(s) |
| 231 | } |
| 232 | |
| 233 | func hasNilValue(expr *Expression) bool { |
| 234 | return expr != nil && expr.Value == nil && expr.Condition == nil && expr.Subquery == nil |
no outgoing calls
no test coverage detected