s/fields/terms (#1031)

use terms instead of fields as variable name to avoid confusion: NewPhraseQuery(terms []string, field string)
release/v1.1
bit 7 years ago committed by Lunny Xiao
parent d077fd084a
commit 490d3771f7

@ -46,12 +46,12 @@ func numericQuery(value int64, field string) *query.NumericRangeQuery {
// SearchIssuesByKeyword searches for issues by given conditions.
// Returns the matching issue IDs
func SearchIssuesByKeyword(repoID int64, keyword string) ([]int64, error) {
fields := strings.Fields(strings.ToLower(keyword))
terms := strings.Fields(strings.ToLower(keyword))
indexerQuery := bleve.NewConjunctionQuery(
numericQuery(repoID, "RepoID"),
bleve.NewDisjunctionQuery(
bleve.NewPhraseQuery(fields, "Title"),
bleve.NewPhraseQuery(fields, "Content"),
bleve.NewPhraseQuery(terms, "Title"),
bleve.NewPhraseQuery(terms, "Content"),
))
search := bleve.NewSearchRequestOptions(indexerQuery, 2147483647, 0, false)
search.Fields = []string{"ID"}

Loading…
Cancel
Save