Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
highlighter lexicon: fix a not highlighted bug
If keyword is less than N, the keyword wasn't highlighted.
- Loading branch information
Showing
3 changed files
with
161 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
test/command/suite/select/function/highlight_html/lexicon/less_than_n.expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| table_create Entries TABLE_NO_KEY | ||
| [[0,0.0,0.0],true] | ||
| column_create Entries body COLUMN_SCALAR ShortText | ||
| [[0,0.0,0.0],true] | ||
| table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer 'TokenNgram("report_source_location", true)' --normalizer 'NormalizerNFKC100' | ||
| [[0,0.0,0.0],true] | ||
| column_create Terms document_index COLUMN_INDEX|WITH_POSITION Entries body | ||
| [[0,0.0,0.0],true] | ||
| load --table Entries | ||
| [ | ||
| {"body": "私は私であって私"} | ||
| ] | ||
| [[0,0.0,0.0],1] | ||
| select Entries --match_columns body --query '私' --output_columns 'highlight_html(body, Terms)' | ||
| [ | ||
| [ | ||
| 0, | ||
| 0.0, | ||
| 0.0 | ||
| ], | ||
| [ | ||
| [ | ||
| [ | ||
| 1 | ||
| ], | ||
| [ | ||
| [ | ||
| "highlight_html", | ||
| null | ||
| ] | ||
| ], | ||
| [ | ||
| "<span class=\"keyword\">私</span>は<span class=\"keyword\">私</span>であって<span class=\"keyword\">私</span>" | ||
| ] | ||
| ] | ||
| ] | ||
| ] |
17 changes: 17 additions & 0 deletions
17
test/command/suite/select/function/highlight_html/lexicon/less_than_n.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| table_create Entries TABLE_NO_KEY | ||
| column_create Entries body COLUMN_SCALAR ShortText | ||
|
|
||
| table_create Terms TABLE_PAT_KEY ShortText \ | ||
| --default_tokenizer 'TokenNgram("report_source_location", true)' \ | ||
| --normalizer 'NormalizerNFKC100' | ||
| column_create Terms document_index COLUMN_INDEX|WITH_POSITION Entries body | ||
|
|
||
| load --table Entries | ||
| [ | ||
| {"body": "私は私であって私"} | ||
| ] | ||
|
|
||
| select Entries \ | ||
| --match_columns body \ | ||
| --query '私' \ | ||
| --output_columns 'highlight_html(body, Terms)' |