Skip to content

Commit

Permalink
Revert "skip null fields for terms"
Browse files Browse the repository at this point in the history
This reverts commit a2f0f10.
  • Loading branch information
gernest committed Feb 10, 2024
1 parent be880f6 commit ed30292
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions segment/cold/dictionary_field.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ func (f *base) IndexDocValues() bool { return false }

func (f *DictionaryField) EachTerm(vt segment.VisitTerm) {
for i := 0; i < f.array.Len(); i++ {
if f.array.IsNull(i) {
continue
}
vt(f.term.newTerm(f, i))
}
}
Expand Down

0 comments on commit ed30292

Please sign in to comment.