diff --git a/integration_tests/mysql/main.go b/integration_tests/mysql/main.go index f2783cba..e2794a4d 100644 --- a/integration_tests/mysql/main.go +++ b/integration_tests/mysql/main.go @@ -597,6 +597,7 @@ func testScan(db *sql.DB) error { } for _, batchSize := range []int{1, 2, 5, 6, 24, 25, 26} { + slog.Info(fmt.Sprintf("Testing scan with batchSize of %d...", batchSize)) rows, err := readTable(db, tempTableName, batchSize) if err != nil { return err diff --git a/integration_tests/postgres/main.go b/integration_tests/postgres/main.go index 7a189a4b..2fea2030 100644 --- a/integration_tests/postgres/main.go +++ b/integration_tests/postgres/main.go @@ -814,6 +814,7 @@ func testScan(db *sql.DB) error { } for _, batchSize := range []int{1, 2, 5, 6, 24, 25, 26} { + slog.Info(fmt.Sprintf("Testing scan with batchSize of %d...", batchSize)) rows, err := readTable(db, tempTableName, batchSize) if err != nil { return err