Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ii regexp: add grn_ii_select_cursor_open() return value check
- Loading branch information
Showing
3 changed files
with
60 additions
and
3 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
27 changes: 27 additions & 0 deletions
27
test/command/suite/select/filter/index/regexp/dot_asterisk/not_match.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,27 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| [[0,0.0,0.0],true] | ||
| column_create Memos content COLUMN_SCALAR Text | ||
| [[0,0.0,0.0],true] | ||
| table_create RegexpTokens TABLE_PAT_KEY ShortText --normalizer NormalizerAuto --default_tokenizer TokenRegexp | ||
| [[0,0.0,0.0],true] | ||
| column_create RegexpTokens memos_content COLUMN_INDEX|WITH_POSITION Memos content | ||
| [[0,0.0,0.0],true] | ||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga"}, | ||
| {"content": "Rroonga"}, | ||
| {"content": "PGroonga"} | ||
| ] | ||
| [[0,0.0,0.0],3] | ||
| log_level --level info | ||
| [[0,0.0,0.0],true] | ||
| select Memos --filter 'content @~ "mr.*ga"' | ||
| [[0,0.0,0.0],[[[0],[["_id","UInt32"],["content","Text"]]]]] | ||
| #|i| [object][search][index][key][regexp] <RegexpTokens.memos_content> | ||
| #|i| grn_ii_sel > (mr.*ga) | ||
| #|i| exact: 0 | ||
| #|i| unsplit: 0 | ||
| #|i| partial: 0 | ||
| #|i| hits=0 | ||
| log_level --level notice | ||
| [[0,0.0,0.0],true] |
23 changes: 23 additions & 0 deletions
23
test/command/suite/select/filter/index/regexp/dot_asterisk/not_match.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,23 @@ | ||
| #$GRN_II_REGEXP_DOT_ASTERISK_ENABLE=yes | ||
|
|
||
| table_create Memos TABLE_NO_KEY | ||
| column_create Memos content COLUMN_SCALAR Text | ||
|
|
||
| table_create RegexpTokens TABLE_PAT_KEY ShortText \ | ||
| --normalizer NormalizerAuto \ | ||
| --default_tokenizer TokenRegexp | ||
| column_create RegexpTokens memos_content COLUMN_INDEX|WITH_POSITION \ | ||
| Memos content | ||
|
|
||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga"}, | ||
| {"content": "Rroonga"}, | ||
| {"content": "PGroonga"} | ||
| ] | ||
|
|
||
| log_level --level info | ||
| #@add-important-log-levels info | ||
| select Memos --filter 'content @~ "mr.*ga"' | ||
| #@remove-important-log-levels info | ||
| log_level --level notice |