Return `true` if `{` appears inside any `Text` segment of `sql`.
(sql: &str)
| 252 | |
| 253 | /// Return `true` if `{` appears inside any `Text` segment of `sql`. |
| 254 | pub fn has_brace_outside_literals(sql: &str) -> bool { |
| 255 | has_operator_outside_literals(sql, "{") |
| 256 | } |
| 257 | |
| 258 | /// Return the byte position (relative to `sql`) of the first case-insensitive |
| 259 | /// occurrence of the keyword `kw` that falls inside a `Text` segment. Returns |
no test coverage detected