|
|
|
@@ -427,7 +427,7 @@ func searchIssue(ctx *context.Context, TableName string, Key string, Page int, P |
|
|
|
commentQuery := elastic.NewMatchQuery("comment", Key).Boost(1).QueryName("f_third") |
|
|
|
boolQ.Should(nameQuery, contentQuery, commentQuery) |
|
|
|
} |
|
|
|
isIssueQuery := elastic.NewTermQuery("is_pull.keyword", false) |
|
|
|
isIssueQuery := elastic.NewTermQuery("is_pull", "f") |
|
|
|
boolQ.Must(isIssueQuery) |
|
|
|
res, err := client.Search(TableName).Query(boolQ).Sort(SortBy, ascending).From((Page - 1) * PageSize).Size(PageSize).Do(ctx.Req.Context()) |
|
|
|
if err == nil { |
|
|
|
@@ -510,7 +510,7 @@ func searchPR(ctx *context.Context, TableName string, Key string, Page int, Page |
|
|
|
commentQuery := elastic.NewMatchQuery("comment", Key).Boost(1).QueryName("f_third") |
|
|
|
boolQ.Should(nameQuery, contentQuery, commentQuery) |
|
|
|
} |
|
|
|
isIssueQuery := elastic.NewTermQuery("is_pull", true) |
|
|
|
isIssueQuery := elastic.NewTermQuery("is_pull", "t") |
|
|
|
boolQ.Must(isIssueQuery) |
|
|
|
res, err := client.Search(TableName).Query(boolQ).Sort(SortBy, ascending).From((Page - 1) * PageSize).Size(PageSize).Do(ctx.Req.Context()) |
|
|
|
if err == nil { |
|
|
|
|