Class: Veritas::Optimizer::Algebra::Product::TableDeeRight

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

Overview

Optimize when right operand is a TABLE DEE

Constant Summary

Constants inherited from Veritas::Optimizer

Noop, VERSION

Instance Attribute Summary

Attributes included from Function::Binary

#left, #right

Attributes inherited from Veritas::Optimizer

#operation

Instance Method Summary collapse

Methods included from Function::Binary

#initialize

Methods inherited from Veritas::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)


42
43
44
45
# File 'lib/veritas/optimizer/algebra/product.rb', line 42

def optimizable?
  right = self.right
  right.header.empty? && ! right.kind_of?(Veritas::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:



52
53
54
# File 'lib/veritas/optimizer/algebra/product.rb', line 52

def optimize
  left
end