Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

partition ranges, covering indexes, smarter iterators #1116

Merged
merged 13 commits into from
Dec 16, 2020
Prev Previous commit
Next Next commit
PR feedback
  • Loading branch information
Brian Hendriks committed Dec 16, 2020
commit 5e7c137f44dedc0ebcc7e43cd91004488ed49209
2 changes: 1 addition & 1 deletion go/libraries/doltcore/sqle/dolt_map_iter.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type KVToSqlRowConverter struct {
// rowSize is the number of columns in the output row. This may be bigger than the number of columns being converted,
// but not less. When rowSize is bigger than the number of columns being processed that means that some of the columns
// in the output row will be filled with nils
rowSize int
rowSize int
}

// NewKVToSqlRowConverterForCols returns a KVToSqlConverter instance based on the list of rows passed in
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/rows/columns

Expand Down
3 changes: 2 additions & 1 deletion go/libraries/utils/set/strset.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
package set

import (
"github.com/dolthub/dolt/go/libraries/utils/funcitr"
"sort"
"strings"

"github.com/dolthub/dolt/go/libraries/utils/funcitr"
)

// StrSet is a simple set implementation providing standard set operations for strings.
Expand Down
7 changes: 0 additions & 7 deletions go/store/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// This file incorporates work covered by the following copyright and
// permission notice:
//
// Copyright 2016 Attic Labs, Inc. All rights reserved.
// Licensed under the Apache License, version 2.0:
// http://www.apache.org/licenses/LICENSE-2.0

package store
bheni marked this conversation as resolved.
Show resolved Hide resolved

Expand Down