@@ -504,7 +504,7 @@ func (r *SearchResult) Each(typ reflect.Type) []interface{} {
504
504
slice = append (slice , v .Interface ())
505
505
continue
506
506
}
507
- if err := json .Unmarshal (* hit .Source , v .Addr ().Interface ()); err == nil {
507
+ if err := json .Unmarshal (hit .Source , v .Addr ().Interface ()); err == nil {
508
508
slice = append (slice , v .Interface ())
509
509
}
510
510
}
@@ -543,7 +543,7 @@ type SearchHit struct {
543
543
Version * int64 `json:"_version,omitempty"` // version number, when Version is set to true in SearchService
544
544
Sort []interface {} `json:"sort,omitempty"` // sort information
545
545
Highlight SearchHitHighlight `json:"highlight,omitempty"` // highlighter information
546
- Source * json.RawMessage `json:"_source,omitempty"` // stored document source
546
+ Source json.RawMessage `json:"_source,omitempty"` // stored document source
547
547
Fields map [string ]interface {} `json:"fields,omitempty"` // returned (stored) fields
548
548
Explanation * SearchExplanation `json:"_explanation,omitempty"` // explains how the score was computed
549
549
MatchedQueries []string `json:"matched_queries,omitempty"` // matched queries
@@ -587,16 +587,16 @@ type SearchSuggestion struct {
587
587
// SearchSuggestionOption is an option of a SearchSuggestion.
588
588
// See https://www.elastic.co/guide/en/elasticsearch/reference/7.0/search-suggesters.html.
589
589
type SearchSuggestionOption struct {
590
- Text string `json:"text"`
591
- Index string `json:"_index"`
592
- Type string `json:"_type"`
593
- Id string `json:"_id"`
594
- Score float64 `json:"score"` // term and phrase suggesters uses "score" as of 6.2.4
595
- ScoreUnderscore float64 `json:"_score"` // completion and context suggesters uses "_score" as of 6.2.4
596
- Highlighted string `json:"highlighted"`
597
- CollateMatch bool `json:"collate_match"`
598
- Freq int `json:"freq"` // from TermSuggestion.Option in Java API
599
- Source * json.RawMessage `json:"_source"`
590
+ Text string `json:"text"`
591
+ Index string `json:"_index"`
592
+ Type string `json:"_type"`
593
+ Id string `json:"_id"`
594
+ Score float64 `json:"score"` // term and phrase suggesters uses "score" as of 6.2.4
595
+ ScoreUnderscore float64 `json:"_score"` // completion and context suggesters uses "_score" as of 6.2.4
596
+ Highlighted string `json:"highlighted"`
597
+ CollateMatch bool `json:"collate_match"`
598
+ Freq int `json:"freq"` // from TermSuggestion.Option in Java API
599
+ Source json.RawMessage `json:"_source"`
600
600
}
601
601
602
602
// SearchProfile is a list of shard profiling data collected during
0 commit comments