(s string, args ...any)
| 49 | } |
| 50 | |
| 51 | func errorf(s string, args ...any) { |
| 52 | panic(fmt.Errorf("pq: %s", fmt.Sprintf(s, args...))) |
| 53 | } |
| 54 | |
| 55 | func encode(parameterStatus *parameterStatus, x any, pgtypOid oid.Oid) []byte { |
| 56 | switch v := x.(type) { |
no outgoing calls
no test coverage detected
searching dependent graphs…