(s string)
| 277 | } |
| 278 | |
| 279 | func quote(s string) string { |
| 280 | if strings.ContainsAny(s, " \"\t\r\n") { |
| 281 | return fmt.Sprintf("%q", s) |
| 282 | } |
| 283 | return s |
| 284 | } |
| 285 | |
| 286 | // formatQualifiers renders qualifiers into a plain query. |
| 287 | // |
no outgoing calls
no test coverage detected