Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add missing tests for '<', '>' and '~'
- Loading branch information
Showing
8 changed files
with
270 additions
and
0 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| [[0,0.0,0.0],true] | ||
| column_create Memos content COLUMN_SCALAR ShortText | ||
| [[0,0.0,0.0],true] | ||
| table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto | ||
| [[0,0.0,0.0],true] | ||
| column_create Terms index COLUMN_INDEX|WITH_POSITION Memos content | ||
| [[0,0.0,0.0],true] | ||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga is a full text search engine."}, | ||
| {"content": "Rroonga is the Ruby bindings of Groonga."}, | ||
| {"content": "Mroonga is a MySQL storage engine based of Groonga."} | ||
| ] | ||
| [[0,0.0,0.0],3] | ||
| select Memos --match_columns content --query 'Groonga <Ruby' --output_columns 'content, _score' --sort_keys -_score,_id | ||
| [ | ||
| [ | ||
| 0, | ||
| 0.0, | ||
| 0.0 | ||
| ], | ||
| [ | ||
| [ | ||
| [ | ||
| 1 | ||
| ], | ||
| [ | ||
| [ | ||
| "content", | ||
| "ShortText" | ||
| ], | ||
| [ | ||
| "_score", | ||
| "Int32" | ||
| ] | ||
| ], | ||
| [ | ||
| "Rroonga is the Ruby bindings of Groonga.", | ||
| 6 | ||
| ] | ||
| ] | ||
| ] | ||
| ] |
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,21 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| column_create Memos content COLUMN_SCALAR ShortText | ||
|
|
||
| table_create Terms TABLE_PAT_KEY ShortText \ | ||
| --default_tokenizer TokenBigram \ | ||
| --normalizer NormalizerAuto | ||
| column_create Terms index COLUMN_INDEX|WITH_POSITION Memos content | ||
|
|
||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga is a full text search engine."}, | ||
| {"content": "Rroonga is the Ruby bindings of Groonga."}, | ||
| {"content": "Mroonga is a MySQL storage engine based of Groonga."} | ||
| ] | ||
|
|
||
| select Memos \ | ||
| --match_columns content \ | ||
| --query 'Groonga <Ruby' \ | ||
| --output_columns 'content, _score' \ | ||
| --sort_keys -_score,_id | ||
|
|
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,44 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| [[0,0.0,0.0],true] | ||
| column_create Memos content COLUMN_SCALAR ShortText | ||
| [[0,0.0,0.0],true] | ||
| table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto | ||
| [[0,0.0,0.0],true] | ||
| column_create Terms index COLUMN_INDEX|WITH_POSITION Memos content | ||
| [[0,0.0,0.0],true] | ||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga is a full text search engine."}, | ||
| {"content": "Rroonga is the Ruby bindings of Groonga."}, | ||
| {"content": "Mroonga is a MySQL storage engine based of Groonga."} | ||
| ] | ||
| [[0,0.0,0.0],3] | ||
| select Memos --match_columns content --query 'Groonga >Ruby' --output_columns 'content, _score' --sort_keys -_score,_id | ||
| [ | ||
| [ | ||
| 0, | ||
| 0.0, | ||
| 0.0 | ||
| ], | ||
| [ | ||
| [ | ||
| [ | ||
| 1 | ||
| ], | ||
| [ | ||
| [ | ||
| "content", | ||
| "ShortText" | ||
| ], | ||
| [ | ||
| "_score", | ||
| "Int32" | ||
| ] | ||
| ], | ||
| [ | ||
| "Rroonga is the Ruby bindings of Groonga.", | ||
| 8 | ||
| ] | ||
| ] | ||
| ] | ||
| ] |
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,21 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| column_create Memos content COLUMN_SCALAR ShortText | ||
|
|
||
| table_create Terms TABLE_PAT_KEY ShortText \ | ||
| --default_tokenizer TokenBigram \ | ||
| --normalizer NormalizerAuto | ||
| column_create Terms index COLUMN_INDEX|WITH_POSITION Memos content | ||
|
|
||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga is a full text search engine."}, | ||
| {"content": "Rroonga is the Ruby bindings of Groonga."}, | ||
| {"content": "Mroonga is a MySQL storage engine based of Groonga."} | ||
| ] | ||
|
|
||
| select Memos \ | ||
| --match_columns content \ | ||
| --query 'Groonga >Ruby' \ | ||
| --output_columns 'content, _score' \ | ||
| --sort_keys -_score,_id | ||
|
|
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,48 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| [[0,0.0,0.0],true] | ||
| column_create Memos content COLUMN_SCALAR ShortText | ||
| [[0,0.0,0.0],true] | ||
| table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto | ||
| [[0,0.0,0.0],true] | ||
| column_create Terms index COLUMN_INDEX|WITH_POSITION Memos content | ||
| [[0,0.0,0.0],true] | ||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga is a full text search engine."}, | ||
| {"content": "Rroonga is the Ruby bindings of Groonga."}, | ||
| {"content": "Mroonga is a MySQL storage engine based of Groonga."} | ||
| ] | ||
| [[0,0.0,0.0],3] | ||
| select Memos --match_columns content --query 'Groonga (>Ruby OR <Mroonga) ~MySQL' --output_columns 'content, _score' --sort_keys -_score,_id | ||
| [ | ||
| [ | ||
| 0, | ||
| 0.0, | ||
| 0.0 | ||
| ], | ||
| [ | ||
| [ | ||
| [ | ||
| 2 | ||
| ], | ||
| [ | ||
| [ | ||
| "content", | ||
| "ShortText" | ||
| ], | ||
| [ | ||
| "_score", | ||
| "Int32" | ||
| ] | ||
| ], | ||
| [ | ||
| "Rroonga is the Ruby bindings of Groonga.", | ||
| 8 | ||
| ], | ||
| [ | ||
| "Mroonga is a MySQL storage engine based of Groonga.", | ||
| 3 | ||
| ] | ||
| ] | ||
| ] | ||
| ] |
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,20 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| column_create Memos content COLUMN_SCALAR ShortText | ||
|
|
||
| table_create Terms TABLE_PAT_KEY ShortText \ | ||
| --default_tokenizer TokenBigram \ | ||
| --normalizer NormalizerAuto | ||
| column_create Terms index COLUMN_INDEX|WITH_POSITION Memos content | ||
|
|
||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga is a full text search engine."}, | ||
| {"content": "Rroonga is the Ruby bindings of Groonga."}, | ||
| {"content": "Mroonga is a MySQL storage engine based of Groonga."} | ||
| ] | ||
|
|
||
| select Memos \ | ||
| --match_columns content \ | ||
| --query 'Groonga (>Ruby OR <Mroonga) ~MySQL' \ | ||
| --output_columns 'content, _score' \ | ||
| --sort_keys -_score,_id |
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,52 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| [[0,0.0,0.0],true] | ||
| column_create Memos content COLUMN_SCALAR ShortText | ||
| [[0,0.0,0.0],true] | ||
| table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer TokenBigram --normalizer NormalizerAuto | ||
| [[0,0.0,0.0],true] | ||
| column_create Terms index COLUMN_INDEX|WITH_POSITION Memos content | ||
| [[0,0.0,0.0],true] | ||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga is a full text search engine."}, | ||
| {"content": "Rroonga is the Ruby bindings of Groonga."}, | ||
| {"content": "Mroonga is a MySQL storage engine based of Groonga."} | ||
| ] | ||
| [[0,0.0,0.0],3] | ||
| select Memos --match_columns content --query 'Groonga ~Ruby' --output_columns 'content, _score' --sort_keys -_score,_id | ||
| [ | ||
| [ | ||
| 0, | ||
| 0.0, | ||
| 0.0 | ||
| ], | ||
| [ | ||
| [ | ||
| [ | ||
| 3 | ||
| ], | ||
| [ | ||
| [ | ||
| "content", | ||
| "ShortText" | ||
| ], | ||
| [ | ||
| "_score", | ||
| "Int32" | ||
| ] | ||
| ], | ||
| [ | ||
| "Groonga is a full text search engine.", | ||
| 1 | ||
| ], | ||
| [ | ||
| "Mroonga is a MySQL storage engine based of Groonga.", | ||
| 1 | ||
| ], | ||
| [ | ||
| "Rroonga is the Ruby bindings of Groonga.", | ||
| -3 | ||
| ] | ||
| ] | ||
| ] | ||
| ] |
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,20 @@ | ||
| table_create Memos TABLE_NO_KEY | ||
| column_create Memos content COLUMN_SCALAR ShortText | ||
|
|
||
| table_create Terms TABLE_PAT_KEY ShortText \ | ||
| --default_tokenizer TokenBigram \ | ||
| --normalizer NormalizerAuto | ||
| column_create Terms index COLUMN_INDEX|WITH_POSITION Memos content | ||
|
|
||
| load --table Memos | ||
| [ | ||
| {"content": "Groonga is a full text search engine."}, | ||
| {"content": "Rroonga is the Ruby bindings of Groonga."}, | ||
| {"content": "Mroonga is a MySQL storage engine based of Groonga."} | ||
| ] | ||
|
|
||
| select Memos \ | ||
| --match_columns content \ | ||
| --query 'Groonga ~Ruby' \ | ||
| --output_columns 'content, _score' \ | ||
| --sort_keys -_score,_id |