class Groonga::Command::ColumnRename
Public Class Methods
command_name()
click to toggle source
# File lib/groonga/command/column-rename.rb, line 23 def command_name "column_rename" end
parameter_names()
click to toggle source
# File lib/groonga/command/column-rename.rb, line 27 def parameter_names [ :table, :name, :new_name, ] end
Public Instance Methods
name()
click to toggle source
@return [String] The current column name.
@since 1.2.4
# File lib/groonga/command/column-rename.rb, line 48 def name self[:name] end
new_name()
click to toggle source
@return [String] The new column name.
@since 1.2.4
# File lib/groonga/command/column-rename.rb, line 55 def new_name self[:new_name] end
table()
click to toggle source
@return [String] The table name of the column.
@since 1.2.4
# File lib/groonga/command/column-rename.rb, line 41 def table self[:table] end