Class: Axiom::Optimizer::Algebra::Product::TableDeeLeft

Inherits:
Axiom::Optimizer::Algebra::Product show all
Defined in:
lib/axiom/optimizer/algebra/product.rb

Overview

Optimize when left operand is a TABLE DEE

Constant Summary

Constants inherited from Axiom::Optimizer

Identity, VERSION

Instance Attribute Summary

Attributes included from Function::Binary

#left, #right

Attributes inherited from Axiom::Optimizer

#operation

Instance Method Summary collapse

Methods included from Function::Binary

#initialize

Methods inherited from Axiom::Optimizer

chain, #initialize

Instance Method Details

#optimizable?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Test if the left operand is a TABLE DEE

Returns:

  • (Boolean)


18
19
20
# File 'lib/axiom/optimizer/algebra/product.rb', line 18

def optimizable?
  left.header.empty? && ! left.kind_of?(Axiom::Relation::Empty)
end

#optimizeRelation

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

A Product with a left TABLE DEE is equivalent to the right operand

Returns:



27
28
29
# File 'lib/axiom/optimizer/algebra/product.rb', line 27

def optimize
  right
end