(expr *Expression)
| 231 | } |
| 232 | |
| 233 | func hasNilValue(expr *Expression) bool { |
| 234 | return expr != nil && expr.Value == nil && expr.Condition == nil && expr.Subquery == nil |
| 235 | } |
| 236 | |
| 237 | // safeSQLIdentifierRegexp matches SQL identifiers that don't need to be escaped (alphanumeric and underscores, not starting with a digit). |
| 238 | var safeSQLIdentifierRegexp = regexp.MustCompile(`^[a-zA-Z_][a-zA-Z0-9_]*$`) |
no outgoing calls
no test coverage detected