Skip to content

Commit

Permalink
NO-SNOW Add more logging to TestLargeSetResultCancel
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pfus committed Dec 5, 2024
1 parent 951ae61 commit 85f8b6e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions driver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1577,6 +1577,11 @@ func TestTimezoneSessionParameter(t *testing.T) {
}

func TestLargeSetResultCancel(t *testing.T) {
level := logger.GetLogLevel()
_ = logger.SetLogLevel("debug")
defer func() {
_ = logger.SetLogLevel(level)
}()
runDBTest(t, func(dbt *DBTest) {
c := make(chan error)
ctx, cancel := context.WithCancel(context.Background())
Expand Down

0 comments on commit 85f8b6e

Please sign in to comment.