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 accessor by mruby
- Loading branch information
Showing
2 changed files
with
15 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 |
|---|---|---|
| @@ -1,9 +1,23 @@ | ||
| module Groonga | ||
| class ScanInfo | ||
| module Flags | ||
| ACCESSOR = 0x01 | ||
| PUSH = 0x02 | ||
| POP = 0x04 | ||
| PRE_CONST = 0x08 | ||
| end | ||
|
|
||
| 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 | ||
|
|
||
| def resolve_index_accessor(accessor) | ||
| self.flags |= Flags::ACCESSOR | ||
| index_info = accessor.find_index(op) | ||
| return if index_info.nil? | ||
| put_index(index_info.index, index_info.section_id, 1) | ||
| end | ||
| end | ||
| end |