MCPcopy
hub / github.com/jackc/pgx / ErrorResponse

Struct ErrorResponse

pgproto3/error_response.go:9–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7)
8
9type 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.
33func (*ErrorResponse) Backend() {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected