Class: Groonga::Schema::UnknownIndexTarget
- Defined in:
- lib/groonga/schema.rb
Overview
未知のインデックス対象を指定したときに発生する。
Instance Attribute Summary collapse
-
#table ⇒ Object
readonly
Returns the value of attribute table.
-
#targets ⇒ Object
readonly
Returns the value of attribute targets.
Instance Method Summary collapse
-
#initialize(table, targets) ⇒ UnknownIndexTarget
constructor
A new instance of UnknownIndexTarget.
Constructor Details
#initialize(table, targets) ⇒ UnknownIndexTarget
Returns a new instance of UnknownIndexTarget.
104 105 106 107 108 |
# File 'lib/groonga/schema.rb', line 104 def initialize(table, targets) @table = table @targets = targets super("unknown index target: <#{@table.inspect}>: <#{@targets.inspect}>") end |
Instance Attribute Details
#table ⇒ Object (readonly)
Returns the value of attribute table.
103 104 105 |
# File 'lib/groonga/schema.rb', line 103 def table @table end |
#targets ⇒ Object (readonly)
Returns the value of attribute targets.
103 104 105 |
# File 'lib/groonga/schema.rb', line 103 def targets @targets end |