Sha256: a741ad56056dad8477eadb417b54485032f86b12926eb7813a125963837a7f63
Contents?: true
Size: 1.13 KB
Versions: 4
Compression:
Stored size: 1.13 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Algebra::Rename::ProjectionOperand, '#optimizable?' do subject { object.optimizable? } let(:header) { Relation::Header.new([ [ :one, Integer ], [ :two, Integer ] ]) } let(:base) { Relation.new(header, [ [ 1, 2 ] ].each) } let(:object) { described_class.new(relation) } before do object.operation.should be_kind_of(Algebra::Rename) end context 'when the operand is a projection and the alias does not conflict with a removed column' do let(:operand) { base.project([ :one ]) } let(:relation) { operand.rename(:one => :other) } it { should be(true) } end context 'when the operand is a projection and the alias conflicts with a removed column' do let(:operand) { base.project([ :one ]) } let(:relation) { operand.rename(:one => :two) } it { should be(false) } end context 'when the operand is not a projection' do let(:operand) { base } let(:relation) { operand.rename(:one => :other) } it { should be(false) } end end
Version data entries
4 entries across 4 versions & 1 rubygems