Class: Bmg::Operator::Join
- Inherits:
-
Object
- Object
- Bmg::Operator::Join
- Includes:
- Binary
- Defined in:
- lib/bmg/operator/join.rb
Overview
Join operator.
Natural join, following relational algebra
Constant Summary collapse
- DEFAULT_OPTIONS =
{}
Instance Attribute Summary
Attributes included from Bmg::Operator
Instance Method Summary collapse
- #each ⇒ Object
-
#initialize(type, left, right, on, options = {}) ⇒ Join
constructor
A new instance of Join.
- #to_ast ⇒ Object
Methods included from Binary
Methods included from Bmg::Operator
Methods included from Relation
#bind, #debug, #delete, empty, #empty?, #insert, new, #one, #one_or_nil, #to_csv, #to_json, #update, #visit, #with_typecheck, #without_typecheck, #y_by_x, #ys_by_x
Methods included from Algebra
#allbut, #autosummarize, #autowrap, #constants, #extend, #group, #image, #join, #left_join, #matching, #materialize, #not_matching, #page, #project, #rename, #restrict, #spied, #summarize, #transform, #union, #unspied
Methods included from Algebra::Shortcuts
#image, #join, #left_join, #matching, #not_matching, #prefix, #rxmatch, #suffix
Constructor Details
#initialize(type, left, right, on, options = {}) ⇒ Join
Returns a new instance of Join.
13 14 15 16 17 18 19 |
# File 'lib/bmg/operator/join.rb', line 13 def initialize(type, left, right, on, = {}) @type = type @left = left @right = right @on = on @options = DEFAULT_OPTIONS.merge() end |
Instance Method Details
#each ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/bmg/operator/join.rb', line 27 def each index = Hash.new right.each_with_object(index) do |t, index| key = tuple_project(t, on) index[key] ||= [] index[key] << t end left.each do |tuple| key = tuple_project(tuple, on) if to_join = index[key] to_join.each do |right| yield right.merge(tuple) end elsif left_join? yield(tuple.merge(default_right_tuple)) end end end |
#to_ast ⇒ Object
46 47 48 |
# File 'lib/bmg/operator/join.rb', line 46 def to_ast [ :join, left.to_ast, right.to_ast, on, extra_opts ].compact end |