(name string)
| 247 | } |
| 248 | |
| 249 | func quoteIdent(name string) string { |
| 250 | return `"` + strings.ReplaceAll(name, `"`, `""`) + `"` |
| 251 | } |
| 252 | |
| 253 | func completionCandidateText(candidate redshiftcompletion.Candidate) string { |
| 254 | switch candidate.Type { |
no outgoing calls
no test coverage detected