fix(indexer): correct bleve indexer token filters (#38853) (#38951)

Backport #38853 by @gomitrah

* fix #36228
* fix #37221

Co-authored-by: Mitrahsoft <bala.c@mitrahsoft.in>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
Giteabot
2026-08-17 10:51:24 -07:00
committed by GitHub
parent cbcf36cded
commit 1c3ae57f35
9 changed files with 246 additions and 17 deletions
+6
View File
@@ -316,3 +316,9 @@ func DiffSlice[T comparable](oldSlice, newSlice []T) (added, removed []T) {
}
return added, removed
}
func MustNoError(err error) {
if err != nil {
panic(err)
}
}