Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
* Masked the sensitive credential data in the connection string (DSN, data source name) from error messages for security reasons
* Added `WithConcurrentResultSets` option for `db.Query().Query()`

## v3.121.0
* Changed internal pprof label to pyroscope supported format
Expand Down
1 change: 1 addition & 0 deletions internal/query/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ func clientQuery(ctx context.Context, pool sessionPool, q string, opts ...option
if err != nil {
return xerrors.WithStackTrace(err)
}

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Можно убрать, чтобы уменьшить количество файлов в PR.

defer func() {
_ = streamResult.Close(ctx)
}()
Expand Down
Loading
Loading