Skip to content

Commit 93e9dca

Browse files
committed
[ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh
1 parent 27607c6 commit 93e9dca

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

go/libraries/doltcore/sqle/dolt_procedures_diff_table.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ var _ sql.PartitionIter = (*DoltProceduresDiffPartitionItr)(nil)
146146
func (dpdp *DoltProceduresDiffPartitionItr) Next(ctx *sql.Context) (sql.Partition, error) {
147147
// First iterate through commit history, then add working partition as the final step
148148
for {
149-
cmHash, optCmt, _, _, err := dpdp.cmItr.Next(ctx)
149+
cmHash, optCmt, _, _, err := dpdp.cmItr.Next(ctx)
150150
if err == io.EOF {
151151
// Finished with commit history, now add working partition if not done
152152
if !dpdp.workingPartitionDone {

go/libraries/doltcore/sqle/dtablefunctions/dolt_log.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ package dtablefunctions
1616

1717
import (
1818
"fmt"
19-
"github.com/dolthub/dolt/go/store/datas"
20-
"strings"
19+
"strings"
2120

2221
"github.com/dolthub/go-mysql-server/sql"
2322
"github.com/dolthub/go-mysql-server/sql/expression"
@@ -31,6 +30,7 @@ import (
3130
"github.com/dolthub/dolt/go/libraries/doltcore/schema"
3231
"github.com/dolthub/dolt/go/libraries/doltcore/sqle/dsess"
3332
"github.com/dolthub/dolt/go/libraries/utils/gpg"
33+
"github.com/dolthub/dolt/go/store/datas"
3434
"github.com/dolthub/dolt/go/store/hash"
3535
)
3636

go/performance/dolt_log_bench/dolt_log_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"github.com/dolthub/dolt/go/cmd/dolt/commands"
2828
"github.com/dolthub/dolt/go/cmd/dolt/commands/engine"
2929
"github.com/dolthub/dolt/go/libraries/doltcore/dtestutils"
30-
"github.com/dolthub/dolt/go/libraries/doltcore/env"
30+
"github.com/dolthub/dolt/go/libraries/doltcore/env"
3131
)
3232

3333
var dEnv *env.DoltEnv
@@ -100,4 +100,4 @@ func BenchmarkDoltLog(b *testing.B) {
100100
}
101101
_ = eng.Close()
102102
b.ReportAllocs()
103-
}
103+
}

go/store/datas/database_common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type database struct {
4040
ns tree.NodeStore
4141

4242
rootHash hash.Hash
43-
dsMap DatasetsMap
43+
dsMap DatasetsMap
4444
}
4545

4646
const (

0 commit comments

Comments
 (0)