Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: blevesearch/bleve_index_api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.5
Choose a base ref
...
head repository: blevesearch/bleve_index_api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.6
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 26, 2025

  1. Revert "MB-57888: Index Update (#58)" (#65)

    This reverts commit 9af4b44.
    abhinavdangeti authored Mar 26, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    56a3024 View commit details
Showing with 0 additions and 12 deletions.
  1. +0 −12 index.go
12 changes: 0 additions & 12 deletions index.go
Original file line number Diff line number Diff line change
@@ -65,18 +65,6 @@ type EventIndex interface {
FireIndexEvent()
}

type UpdateFieldInfo struct {
Deleted bool
Store bool
Index bool
DocValues bool
}

type UpdateIndex interface {
Index
UpdateFields(fieldInfo map[string]*UpdateFieldInfo, updatedMapping []byte) error
}

type IndexReader interface {
TermFieldReader(ctx context.Context, term []byte, field string, includeFreq, includeNorm, includeTermVectors bool) (TermFieldReader, error)