| 7 | ) |
| 8 | |
| 9 | type ErrorResponse struct { |
| 10 | Severity string |
| 11 | SeverityUnlocalized string // only in 9.6 and greater |
| 12 | Code string |
| 13 | Message string |
| 14 | Detail string |
| 15 | Hint string |
| 16 | Position int32 |
| 17 | InternalPosition int32 |
| 18 | InternalQuery string |
| 19 | Where string |
| 20 | SchemaName string |
| 21 | TableName string |
| 22 | ColumnName string |
| 23 | DataTypeName string |
| 24 | ConstraintName string |
| 25 | File string |
| 26 | Line int32 |
| 27 | Routine string |
| 28 | |
| 29 | UnknownFields map[byte]string |
| 30 | } |
| 31 | |
| 32 | // Backend identifies this message as sendable by the PostgreSQL backend. |
| 33 | func (*ErrorResponse) Backend() {} |
nothing calls this directly
no outgoing calls
no test coverage detected