Skip to content

Commit d8ca4e4

Browse files
modified: driver_test.go
1 parent 41670f6 commit d8ca4e4

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

driver_test.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3418,10 +3418,6 @@ func TestIssue1361(t *testing.T) {
34183418
}
34193419

34203420
dbt := &DBTest{t, db}
3421-
// for _, test := range tests {
3422-
// test(dbt)
3423-
// dbt.db.Exec("DROP TABLE IF EXISTS test")
3424-
// }
34253421
queries := []string{
34263422
`
34273423
CREATE PROCEDURE test_proc1()
@@ -3460,7 +3456,7 @@ func runCallCommand(dbt *DBTest, query, name string) {
34603456

34613457
for rows.Next() {
34623458
}
3463-
for rows.NextResultSet() { // thread will be blocked when exec rs.Close()
3459+
for rows.NextResultSet() { // original thread will be blocked when exec rs.Close()
34643460
for rows.Next() {
34653461
}
34663462
}

0 commit comments

Comments
 (0)