Remove unused sentinal error

pull/594/head
Jack Christensen 2019-08-27 18:29:38 -05:00
parent 28d5375b74
commit 863b41aaa6
2 changed files with 2 additions and 6 deletions

View File

@ -86,9 +86,6 @@ func (ident Identifier) Sanitize() string {
// ErrNoRows occurs when rows are expected but none are returned.
var ErrNoRows = errors.New("no rows in result set")
// ErrDeadConn occurs on an attempt to use a dead connection
var ErrDeadConn = errors.New("conn is dead")
// ErrInvalidLogLevel occurs on attempt to set an invalid log level.
var ErrInvalidLogLevel = errors.New("invalid log level")

View File

@ -627,10 +627,9 @@ func TestFatalRxError(t *testing.T) {
var n int32
var s string
err := conn.QueryRow(context.Background(), "select 1::int4, pg_sleep(10)::varchar").Scan(&n, &s)
if err == pgx.ErrDeadConn {
} else if pgErr, ok := err.(*pgconn.PgError); ok && pgErr.Severity == "FATAL" {
if pgErr, ok := err.(*pgconn.PgError); ok && pgErr.Severity == "FATAL" {
} else {
t.Fatalf("Expected QueryRow Scan to return fatal PgError or ErrDeadConn, but instead received %v", err)
t.Fatalf("Expected QueryRow Scan to return fatal PgError, but instead received %v", err)
}
}()