summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/blevesearch/bleve/index/analysis.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/blevesearch/bleve/index/analysis.go')
-rw-r--r--vendor/github.com/blevesearch/bleve/index/analysis.go10
1 files changed, 9 insertions, 1 deletions
diff --git a/vendor/github.com/blevesearch/bleve/index/analysis.go b/vendor/github.com/blevesearch/bleve/index/analysis.go
index b626b9f3ed..840dad97ae 100644
--- a/vendor/github.com/blevesearch/bleve/index/analysis.go
+++ b/vendor/github.com/blevesearch/bleve/index/analysis.go
@@ -14,7 +14,10 @@
package index
-import "github.com/blevesearch/bleve/document"
+import (
+ "github.com/blevesearch/bleve/analysis"
+ "github.com/blevesearch/bleve/document"
+)
type IndexRow interface {
KeySize() int
@@ -29,6 +32,11 @@ type IndexRow interface {
type AnalysisResult struct {
DocID string
Rows []IndexRow
+
+ // scorch
+ Document *document.Document
+ Analyzed []analysis.TokenFrequencies
+ Length []int
}
type AnalysisWork struct {