Class: Cranium::Transformation::Join

Inherits:
Object
  • Object
show all
Defined in:
lib/cranium/transformation/join.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#match_fieldsObject

Returns the value of attribute match_fields.



5
6
7
# File 'lib/cranium/transformation/join.rb', line 5

def match_fields
  @match_fields
end

#source_leftObject

Returns the value of attribute source_left.



5
6
7
# File 'lib/cranium/transformation/join.rb', line 5

def source_left
  @source_left
end

#source_rightObject

Returns the value of attribute source_right.



5
6
7
# File 'lib/cranium/transformation/join.rb', line 5

def source_right
  @source_right
end

#targetObject

Returns the value of attribute target.



5
6
7
# File 'lib/cranium/transformation/join.rb', line 5

def target
  @target
end

#typeObject

Returns the value of attribute type.



5
6
7
# File 'lib/cranium/transformation/join.rb', line 5

def type
  @type
end

Instance Method Details

#executeObject



9
10
11
12
13
# File 'lib/cranium/transformation/join.rb', line 9

def execute
  validate_parameters
  cache_commonly_used_values
  join_sources
end