Class: GroongaDelta::Mapping::SourceTable

Inherits:
Object
  • Object
show all
Defined in:
lib/groonga-delta/mapping.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, source_column_names, source_filter, groonga_table) ⇒ SourceTable

Returns a new instance of SourceTable.



126
127
128
129
130
131
# File 'lib/groonga-delta/mapping.rb', line 126

def initialize(name, source_column_names, source_filter, groonga_table)
  @name = name
  @source_column_names = source_column_names
  @source_filter = source_filter
  @groonga_table = groonga_table
end

Instance Attribute Details

#groonga_tableObject (readonly)

Returns the value of attribute groonga_table.



125
126
127
# File 'lib/groonga-delta/mapping.rb', line 125

def groonga_table
  @groonga_table
end

#nameObject (readonly)

Returns the value of attribute name.



122
123
124
# File 'lib/groonga-delta/mapping.rb', line 122

def name
  @name
end

#source_column_namesObject (readonly)

Returns the value of attribute source_column_names.



123
124
125
# File 'lib/groonga-delta/mapping.rb', line 123

def source_column_names
  @source_column_names
end

#source_filterObject (readonly)

Returns the value of attribute source_filter.



124
125
126
# File 'lib/groonga-delta/mapping.rb', line 124

def source_filter
  @source_filter
end