We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 085a408 commit 23ca809Copy full SHA for 23ca809
driver_test.go
@@ -2434,6 +2434,7 @@ func TestExecMultipleResults(t *testing.T) {
2434
t.Fatalf("failed to connect: %v", err)
2435
}
2436
conn.Raw(func(conn interface{}) error {
2437
+ //lint:ignore SA1019 this is a test
2438
ex := conn.(driver.Execer)
2439
res, err := ex.Exec(`
2440
INSERT INTO test (value) VALUES ('a'), ('b');
@@ -2491,8 +2492,8 @@ func TestQueryMultipleResults(t *testing.T) {
2491
2492
2493
2494
2495
2496
qr := conn.(driver.Queryer)
-
2497
c := conn.(*mysqlConn)
2498
2499
// Demonstrate that repeated queries reset the affectedRows
0 commit comments