Class: Groonga::Schema::ColumnCreationWithDifferentOptions
- Defined in:
- lib/groonga/schema.rb
Overview
すでに存在するカラムと違うオプションでテーブルを作ろうとしたときに発生する。
Instance Attribute Summary collapse
-
#column ⇒ Object
readonly
Returns the value of attribute column.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#initialize(column, options) ⇒ ColumnCreationWithDifferentOptions
constructor
A new instance of ColumnCreationWithDifferentOptions.
Constructor Details
#initialize(column, options) ⇒ ColumnCreationWithDifferentOptions
Returns a new instance of ColumnCreationWithDifferentOptions.
85 86 87 88 89 90 |
# File 'lib/groonga/schema.rb', line 85 def initialize(column, ) @column = column = super("creating column with differnt option: " + "#{@column.inspect}: #{@options.inspect}") end |