From 15a78105810124ed898b68e4acb53624d2e931da Mon Sep 17 00:00:00 2001 From: adlerhurst <27845747+adlerhurst@users.noreply.github.com> Date: Thu, 17 Jul 2025 01:03:04 +0200 Subject: [PATCH] fix missed query row --- backend/v3/storage/database/dialect/postgres/conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/v3/storage/database/dialect/postgres/conn.go b/backend/v3/storage/database/dialect/postgres/conn.go index 0274f63445..24c0de92c2 100644 --- a/backend/v3/storage/database/dialect/postgres/conn.go +++ b/backend/v3/storage/database/dialect/postgres/conn.go @@ -43,7 +43,7 @@ func (c *pgxConn) Query(ctx context.Context, sql string, args ...any) (database. // QueryRow implements sql.Client. // Subtle: this method shadows the method (*Conn).QueryRow of pgxConn.Conn. func (c *pgxConn) QueryRow(ctx context.Context, sql string, args ...any) database.Row { - return c.Conn.QueryRow(ctx, sql, args...) + return &Row{c.Conn.QueryRow(ctx, sql, args...)} } // Exec implements [database.Pool].