Formatting

Signed-off-by: Zach Musgrave <zach@liquidata.co>
This commit is contained in:
Zach Musgrave
2019-12-04 15:57:49 -08:00
parent 4c0e6087f9
commit c9557a9805
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -492,7 +492,7 @@ func processBatchQuery(ctx context.Context, query string, se *sqlEngine) error {
return fmt.Errorf("Error inserting rows: %v", err.Error())
}
if batchEditStats.numRowsInserted % maxBatchSize == 0 {
if batchEditStats.numRowsInserted%maxBatchSize == 0 {
err := se.db.Flush(ctx)
if err != nil {
return err
+1 -1
View File
@@ -16,9 +16,9 @@ package sql
import (
"context"
"github.com/google/go-cmp/cmp"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"