Sha256: 5aabdcb5b840714bd8a3d61b9e9dd5e54ad477cb5e3a98ab5b926090060dd007
Contents?: true
Size: 1.62 KB
Versions: 2
Compression:
Stored size: 1.62 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Algebra::Join::MaterializedRight, '#optimize' do subject { object.optimize } let(:relation) { left.join(right) } let(:object) { described_class.new(relation) } before do expect(object).to be_optimizable end context 'with no joined tuples' do let(:left) { Relation.new([[:id, Integer]], LazyEnumerable.new) } let(:right) { Relation.new([[:id, Integer], [:age, Integer]], []) } it { should be_kind_of(Algebra::Join) } its(:left) { should eql(left.restrict { Function::Proposition::Contradiction.instance }) } its(:right) { should eql(Relation::Empty.new(right.header)) } end context 'with one joined tuple' do let(:left) { Relation.new([[:id, Integer]], LazyEnumerable.new([[1]])) } let(:right) { Relation.new([[:id, Integer], [:age, Integer]], [[1, 35]]) } it { should be_kind_of(Algebra::Join) } its(:left) { should eql(left.restrict { |r| r.id.eq(1) }) } its(:right) { should be(right) } it 'is not further optimizable' do expect(described_class.new(subject)).to_not be_optimizable end end context 'with two or more joined tuples' do let(:left) { Relation.new([[:id, Integer]], LazyEnumerable.new([[1], [2]])) } let(:right) { Relation.new([[:id, Integer], [:age, Integer]], [[1, 35], [2, 25]]) } it { should be_kind_of(Algebra::Join) } its(:left) { should eql(left.restrict { |r| r.id.include([1, 2]) }) } its(:right) { should be(right) } it 'is not further optimizable' do expect(described_class.new(subject)).to_not be_optimizable end end end
Version data entries
2 entries across 2 versions & 1 rubygems