From 035bbbe0cbd53928c4a67f79576dc29fb10021fb Mon Sep 17 00:00:00 2001 From: merlin Date: Mon, 26 Aug 2024 14:01:37 +0300 Subject: [PATCH] Use sql.ErrNoRows as value for pgx.ErrNoRows --- conn.go | 19 ++++++++++++++++++- conn_test.go | 11 +++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/conn.go b/conn.go index 979095af4..187b3dd57 100644 --- a/conn.go +++ b/conn.go @@ -3,6 +3,7 @@ package pgx import ( "context" "crypto/sha256" + "database/sql" "encoding/hex" "errors" "fmt" @@ -102,11 +103,27 @@ func (ident Identifier) Sanitize() string { var ( // ErrNoRows occurs when rows are expected but none are returned. - ErrNoRows = errors.New("no rows in result set") + ErrNoRows = newProxyErr(sql.ErrNoRows, "no rows in result set") // ErrTooManyRows occurs when more rows than expected are returned. ErrTooManyRows = errors.New("too many rows in result set") ) +func newProxyErr(background error, msg string) error { + return &proxyError{ + msg: msg, + background: background, + } +} + +type proxyError struct { + msg string + background error +} + +func (err *proxyError) Error() string { return err.msg } + +func (err *proxyError) Unwrap() error { return err.background } + var ( errDisabledStatementCache = fmt.Errorf("cannot use QueryExecModeCacheStatement with disabled statement cache") errDisabledDescriptionCache = fmt.Errorf("cannot use QueryExecModeCacheDescribe with disabled description cache") diff --git a/conn_test.go b/conn_test.go index df8c9186f..200ecc1a6 100644 --- a/conn_test.go +++ b/conn_test.go @@ -3,6 +3,7 @@ package pgx_test import ( "bytes" "context" + "database/sql" "os" "strings" "sync" @@ -1408,3 +1409,13 @@ func TestConnDeallocateInvalidatedCachedStatementsInTransactionWithBatch(t *test ensureConnValid(t, conn) } + +func TestErrNoRows(t *testing.T) { + t.Parallel() + + // ensure we preserve old error message + require.Equal(t, "no rows in result set", pgx.ErrNoRows.Error()) + + require.ErrorIs(t, pgx.ErrNoRows, sql.ErrNoRows, "pgx.ErrNowRows must match sql.ErrNoRows") + require.ErrorIs(t, pgx.ErrNoRows, pgx.ErrNoRows, "sql.ErrNowRows must match pgx.ErrNoRows") +}