mirror of
https://github.com/dolthub/dolt.git
synced 2026-03-01 10:09:41 -06:00
go/store/datas: repoformat.
This commit is contained in:
@@ -25,8 +25,8 @@ import (
|
||||
"container/heap"
|
||||
"context"
|
||||
"errors"
|
||||
"io"
|
||||
"fmt"
|
||||
"io"
|
||||
|
||||
flatbuffers "github.com/google/flatbuffers/go"
|
||||
|
||||
@@ -35,9 +35,9 @@ import (
|
||||
"github.com/dolthub/dolt/go/store/d"
|
||||
"github.com/dolthub/dolt/go/store/hash"
|
||||
"github.com/dolthub/dolt/go/store/nomdl"
|
||||
"github.com/dolthub/dolt/go/store/types"
|
||||
"github.com/dolthub/dolt/go/store/prolly/tree"
|
||||
"github.com/dolthub/dolt/go/store/prolly"
|
||||
"github.com/dolthub/dolt/go/store/prolly/tree"
|
||||
"github.com/dolthub/dolt/go/store/types"
|
||||
"github.com/dolthub/dolt/go/store/val"
|
||||
)
|
||||
|
||||
@@ -810,7 +810,7 @@ func (i *fbParentsClosureIterator) Next(ctx context.Context) bool {
|
||||
if i.i == 0 {
|
||||
return false
|
||||
}
|
||||
i.i = i.i-1
|
||||
i.i = i.i - 1
|
||||
return true
|
||||
}
|
||||
|
||||
@@ -889,7 +889,7 @@ func newParentsClosureIterator(ctx context.Context, c *Commit, vr types.ValueRea
|
||||
i += 1
|
||||
}
|
||||
return &fbParentsClosureIterator{
|
||||
tuples, len(tuples)-1,
|
||||
tuples, len(tuples) - 1,
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
||||
@@ -23,10 +23,10 @@ package datas
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"testing"
|
||||
"io"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
@@ -36,9 +36,9 @@ import (
|
||||
"github.com/dolthub/dolt/go/store/d"
|
||||
"github.com/dolthub/dolt/go/store/hash"
|
||||
"github.com/dolthub/dolt/go/store/nomdl"
|
||||
"github.com/dolthub/dolt/go/store/types"
|
||||
"github.com/dolthub/dolt/go/store/prolly/tree"
|
||||
"github.com/dolthub/dolt/go/store/prolly"
|
||||
"github.com/dolthub/dolt/go/store/prolly/tree"
|
||||
"github.com/dolthub/dolt/go/store/types"
|
||||
"github.com/dolthub/dolt/go/store/val"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user