(s string)
| 386 | } |
| 387 | |
| 388 | func EscapeStringValue(s string) string { |
| 389 | return fmt.Sprintf("'%s'", strings.ReplaceAll(s, "'", "''")) |
| 390 | } |
| 391 | |
| 392 | func CheckTypeCompatibility(f *runtimev1.StructType_Field) bool { |
| 393 | switch f.Type.Code { |
no outgoing calls
no test coverage detected