Skip to content

Commit

Permalink
use index schema instead
Browse files Browse the repository at this point in the history
  • Loading branch information
James Cor committed Jan 3, 2025
1 parent 4805462 commit 97260c1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion go/libraries/doltcore/sqle/index/dolt_index_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,6 @@ func TestDoltIndexGreaterThan(t *testing.T) {
})
}
}

func TestDoltIndexGreaterThanOrEqual(t *testing.T) {
root, indexMap := doltIndexSetup(t)

Expand Down
2 changes: 1 addition & 1 deletion go/libraries/doltcore/sqle/index/prolly_index_iter.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ func newProllyCoveringIndexIter(
//} else {
// keyMap, ordMap = coveringIndexMapping(idx, projections)
//}
ordMap, err := ProjectionMappingsForIndex2(idx.Schema(), projections)
ordMap, err := ProjectionMappingsForIndex2(idx.IndexSchema(), projections)
if err != nil {
return prollyCoveringIndexIter{}, err
}
Expand Down

0 comments on commit 97260c1

Please sign in to comment.