Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mrb: implement index resolution for db_obj by mruby
- Loading branch information
Showing
3 changed files
with
13 additions
and
10 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
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,9 @@ | ||
| module Groonga | ||
| class ScanInfo | ||
| def resolve_index_db_obj(db_obj) | ||
| index_info = db_obj.find_index(op) | ||
| return if index_info.nil? | ||
| put_index(index_info.index, index_info.section_id, 1) | ||
| end | ||
| end | ||
| end |
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 |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| RUBY_SCRIPT_FILES = \ | ||
| eval_context.rb \ | ||
| expression.rb | ||
| expression.rb \ | ||
| scan_info.rb |