Formatting

This commit is contained in:
Zach Musgrave
2021-01-26 18:25:08 -08:00
parent fc91da34ba
commit 8a0d5d2bef
3 changed files with 3 additions and 3 deletions

View File

@@ -508,4 +508,4 @@ func TestInferSchema(t *testing.T) {
assert.NoError(t, err)
})
}
}
}

View File

@@ -275,7 +275,6 @@ func FilterColCollection(cc *ColCollection, cb func(col Column) bool) *ColCollec
return NewColCollection(filtered...)
}
func ColCollUnion(colColls ...*ColCollection) (*ColCollection, error) {
var allCols []Column
for _, sch := range colColls {

View File

@@ -19,9 +19,10 @@ import (
"strconv"
"testing"
"github.com/stretchr/testify/assert"
"github.com/dolthub/dolt/go/libraries/doltcore/schema/typeinfo"
"github.com/dolthub/dolt/go/store/types"
"github.com/stretchr/testify/assert"
)
var firstNameCol = Column{"first", 0, types.StringKind, false, typeinfo.StringDefaultType, "", false, "", nil}