Class: Groonga::Command::ColumnCreate

Inherits:
Base
  • Object
show all
Defined in:
lib/groonga/command/column-create.rb

Instance Attribute Summary

Attributes inherited from Base

#arguments, #command_name, #original_format, #original_source, #path_prefix

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#==, #[], #[]=, #command_format?, #initialize, #key?, #output_type, #request_id, #to_command_format, #to_uri_format, #uri_format?

Constructor Details

This class inherits a constructor from Groonga::Command::Base

Class Method Details

.command_nameObject



23
24
25
# File 'lib/groonga/command/column-create.rb', line 23

def command_name
  "column_create"
end

.parameter_namesObject



27
28
29
30
31
32
33
34
35
# File 'lib/groonga/command/column-create.rb', line 27

def parameter_names
  [
    :table,
    :name,
    :flags,
    :type,
    :source,
  ]
end

Instance Method Details

#column_index?Boolean

Returns true if "COLUMN_INDEX" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "COLUMN_INDEX" is specified in #flags, false otherwise.

Since:

  • 1.0.3



80
81
82
# File 'lib/groonga/command/column-create.rb', line 80

def column_index?
  flags.include?("COLUMN_INDEX")
end

#column_scalar?Boolean

Returns true if "COLUMN_SCALAR" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "COLUMN_SCALAR" is specified in #flags, false otherwise.

Since:

  • 1.0.3



66
67
68
# File 'lib/groonga/command/column-create.rb', line 66

def column_scalar?
  flags.include?("COLUMN_SCALAR")
end

#column_vector?Boolean

Returns true if "COLUMN_VECTOR" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "COLUMN_VECTOR" is specified in #flags, false otherwise.

Since:

  • 1.0.3



73
74
75
# File 'lib/groonga/command/column-create.rb', line 73

def column_vector?
  flags.include?("COLUMN_VECTOR")
end

#flagsObject



53
54
55
# File 'lib/groonga/command/column-create.rb', line 53

def flags
  @flags ||= flags_value(:flags)
end

#nameString

Returns The column name.

Returns:

  • (String)

    The column name.

Since:

  • 1.2.4



49
50
51
# File 'lib/groonga/command/column-create.rb', line 49

def name
  self[:name]
end

#sources::Array<String>

An array of index sources. If source parameter value is empty or nil, this method returns an empty array.

Returns:

  • (::Array<String>)

    an array of index sources. If source parameter value is empty or nil, this method returns an empty array.

Since:

  • 1.0.7



110
111
112
# File 'lib/groonga/command/column-create.rb', line 110

def sources
  @sources ||= array_value(:source)
end

#tableString

Returns table name.

Returns:

  • (String)

    table name.

Since:

  • 1.0.7



42
43
44
# File 'lib/groonga/command/column-create.rb', line 42

def table
  self[:table]
end

#typeString

Returns value type name of the column.

Returns:

  • (String)

    value type name of the column.

Since:

  • 1.0.7



59
60
61
# File 'lib/groonga/command/column-create.rb', line 59

def type
  self[:type]
end

#with_position?Boolean

Returns true if "WITH_POSITION" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "WITH_POSITION" is specified in #flags, false otherwise.

Since:

  • 1.0.3



101
102
103
# File 'lib/groonga/command/column-create.rb', line 101

def with_position?
  flags.include?("WITH_POSITION")
end

#with_section?Boolean

Returns true if "WITH_SECTION" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "WITH_SECTION" is specified in #flags, false otherwise.

Since:

  • 1.0.3



87
88
89
# File 'lib/groonga/command/column-create.rb', line 87

def with_section?
  flags.include?("WITH_SECTION")
end

#with_weight?Boolean

Returns true if "WITH_WEIGHT" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "WITH_WEIGHT" is specified in #flags, false otherwise.

Since:

  • 1.0.3



94
95
96
# File 'lib/groonga/command/column-create.rb', line 94

def with_weight?
  flags.include?("WITH_WEIGHT")
end