(s string)
| 284 | } |
| 285 | |
| 286 | func quote(s string) string { |
| 287 | if strings.ContainsAny(s, " \"\t\r\n") { |
| 288 | return fmt.Sprintf("%q", s) |
| 289 | } |
| 290 | return s |
| 291 | } |
| 292 | |
| 293 | // formatQualifiers renders qualifiers into a plain query. |
| 294 | // |
no outgoing calls
no test coverage detected