(identifier string)
| 637 | } |
| 638 | |
| 639 | func quoteIdentifier(identifier string) string { |
| 640 | replaced := strings.ReplaceAll(identifier, "\"", "\"\"") |
| 641 | return "\"" + replaced + "\"" |
| 642 | } |
| 643 | |
| 644 | func valueAsString(v any) string { |
| 645 | switch t := v.(type) { |
no outgoing calls
no test coverage detected