From 9b0e57c4a93bc53648b32f33efcea96e8f26d207 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 19 Dec 2020 10:17:41 -0600 Subject: [PATCH] Fix panic on query error with nil stmtcache fixes #895 --- query_test.go | 25 +++++++++++++++++++++++++ rows.go | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/query_test.go b/query_test.go index f04a7a77..3f59c33a 100644 --- a/query_test.go +++ b/query_test.go @@ -1973,6 +1973,31 @@ func TestQueryStatementCacheModes(t *testing.T) { } } +// https://github.com/jackc/pgx/issues/895 +func TestQueryErrorWithNilStatementCacheMode(t *testing.T) { + t.Parallel() + + config := mustParseConfig(t, os.Getenv("PGX_TEST_DATABASE")) + config.BuildStatementCache = nil + + conn := mustConnect(t, config) + defer closeConn(t, conn) + + _, err := conn.Exec(context.Background(), "create temporary table t_unq(id text primary key);") + require.NoError(t, err) + + _, err = conn.Exec(context.Background(), "insert into t_unq (id) values ($1)", "abc") + require.NoError(t, err) + + rows, err := conn.Query(context.Background(), "insert into t_unq (id) values ($1)", "abc") + require.NoError(t, err) + rows.Close() + err = rows.Err() + require.EqualError(t, err, `ERROR: duplicate key value violates unique constraint "t_unq_pkey" (SQLSTATE 23505)`) + + ensureConnValid(t, conn) +} + func TestConnQueryFunc(t *testing.T) { t.Parallel() diff --git a/rows.go b/rows.go index 88949b45..2b9e0a9b 100644 --- a/rows.go +++ b/rows.go @@ -150,7 +150,7 @@ func (rows *connRows) Close() { if rows.logger.shouldLog(LogLevelError) { rows.logger.log(rows.ctx, LogLevelError, "Query", map[string]interface{}{"err": rows.err, "sql": rows.sql, "args": logQueryArgs(rows.args)}) } - if rows.err != nil { + if rows.err != nil && rows.conn.stmtcache != nil { rows.conn.stmtcache.StatementErrored(rows.sql, rows.err) } }