Class: Groonga::Schema::ColumnRenameDefinition

Inherits:
Object
  • Object
show all
Includes:
Path
Defined in:
lib/groonga/schema.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Path

#columns_directory_path, #rmdir_if_available, #tables_directory_path

Constructor Details

#initialize(current_name, new_name, options = {}) ⇒ ColumnRenameDefinition

Returns a new instance of ColumnRenameDefinition.



1565
1566
1567
1568
1569
1570
1571
# File 'lib/groonga/schema.rb', line 1565

def initialize(current_name, new_name, options={})
  @current_name = current_name
  @current_name = @current_name.to_s if @current_name.is_a?(Symbol)
  @new_name = new_name
  @new_name = @new_name.to_s if @new_name.is_a?(Symbol)
  @options = (options || {}).dup
end

Instance Attribute Details

#current_nameObject

Returns the value of attribute current_name.



1562
1563
1564
# File 'lib/groonga/schema.rb', line 1562

def current_name
  @current_name
end

#new_nameObject

Returns the value of attribute new_name.



1562
1563
1564
# File 'lib/groonga/schema.rb', line 1562

def new_name
  @new_name
end

#optionsObject (readonly)

Returns the value of attribute options.



1563
1564
1565
# File 'lib/groonga/schema.rb', line 1563

def options
  @options
end

Instance Method Details

#define(table_definition, table) ⇒ Object



1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
# File 'lib/groonga/schema.rb', line 1573

def define(table_definition, table)
  if @current_name.respond_to?(:call)
    current_name = @current_name.call(table_definition.context)
  else
    current_name = @current_name
  end
  column = table.column(current_name)

  if column.nil?
    raise ColumnNotExists.new(name)
  end

  column.rename(@new_name)
end