diff --git a/go/libraries/doltcore/sqle/alterschema.go b/go/libraries/doltcore/sqle/alterschema.go index c4ab6ffd1c..7b026a75bb 100755 --- a/go/libraries/doltcore/sqle/alterschema.go +++ b/go/libraries/doltcore/sqle/alterschema.go @@ -727,4 +727,4 @@ func keyedRowDataToKeylessRowData(ctx context.Context, nbf *types.NomsBinFormat, } return mapEditor.Map(ctx) -} \ No newline at end of file +} diff --git a/go/libraries/doltcore/sqle/temp_table.go b/go/libraries/doltcore/sqle/temp_table.go index 0a579988d5..213c4e4278 100644 --- a/go/libraries/doltcore/sqle/temp_table.go +++ b/go/libraries/doltcore/sqle/temp_table.go @@ -20,16 +20,16 @@ import ( "math/rand" "strconv" - "github.com/dolthub/dolt/go/libraries/doltcore/sqle/dsess" - "github.com/dolthub/dolt/go/libraries/doltcore/sqle/globalstate" - "github.com/dolthub/dolt/go/libraries/doltcore/sqle/writer" "github.com/dolthub/go-mysql-server/sql" "github.com/dolthub/dolt/go/libraries/doltcore/doltdb" "github.com/dolthub/dolt/go/libraries/doltcore/doltdb/durable" "github.com/dolthub/dolt/go/libraries/doltcore/schema" + "github.com/dolthub/dolt/go/libraries/doltcore/sqle/dsess" + "github.com/dolthub/dolt/go/libraries/doltcore/sqle/globalstate" "github.com/dolthub/dolt/go/libraries/doltcore/sqle/index" "github.com/dolthub/dolt/go/libraries/doltcore/sqle/sqlutil" + "github.com/dolthub/dolt/go/libraries/doltcore/sqle/writer" "github.com/dolthub/dolt/go/libraries/doltcore/table/editor" "github.com/dolthub/dolt/go/libraries/doltcore/table/editor/creation" "github.com/dolthub/dolt/go/store/types" @@ -128,7 +128,7 @@ func NewTempTable( return tempTable, nil } -func setTempTableRoot(t *TempTable) func (ctx *sql.Context, dbName string, newRoot *doltdb.RootValue) error { +func setTempTableRoot(t *TempTable) func(ctx *sql.Context, dbName string, newRoot *doltdb.RootValue) error { return func(ctx *sql.Context, dbName string, newRoot *doltdb.RootValue) error { newTable, _, err := newRoot.GetTable(ctx, t.tableName) if err != nil {