Class: Groonga::Schema::TableCreationWithDifferentOptions
- Defined in:
- lib/groonga/schema.rb
Overview
すでに存在するテーブルと違うオプションでテーブルを作ろ うとしたときに発生する。
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#table ⇒ Object
readonly
Returns the value of attribute table.
Instance Method Summary collapse
-
#initialize(table, options) ⇒ TableCreationWithDifferentOptions
constructor
A new instance of TableCreationWithDifferentOptions.
Constructor Details
#initialize(table, options) ⇒ TableCreationWithDifferentOptions
Returns a new instance of TableCreationWithDifferentOptions.
74 75 76 77 78 79 |
# File 'lib/groonga/schema.rb', line 74 def initialize(table, ) @table = table @options = super("creating table with different options: " + "#{@table.inspect}: #{@options.inspect}") end |