Class: Axiom::Optimizer::Algebra::Product::TableDeeRight

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

Overview

Optimize when right 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 right operand is a TABLE DEE

Returns:

  • (Boolean)


41
42
43
# File 'lib/axiom/optimizer/algebra/product.rb', line 41

def optimizable?
  right.header.empty? && !right.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 right TABLE DEE is equivalent to the left operand

Returns:



50
51
52
# File 'lib/axiom/optimizer/algebra/product.rb', line 50

def optimize
  left
end