Package cascading.lingual.optiq

Source Code of cascading.lingual.optiq.CascadingProjectRel

/*
* Copyright (c) 2007-2014 Concurrent, Inc. All Rights Reserved.
*
* Project and contact information: http://www.cascading.org/
*
* This file is part of the Cascading project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package cascading.lingual.optiq;

import java.util.List;

import cascading.lingual.optiq.meta.Branch;
import org.eigenbase.rel.ProjectRelBase;
import org.eigenbase.rel.RelCollation;
import org.eigenbase.rel.RelNode;
import org.eigenbase.relopt.RelOptCluster;
import org.eigenbase.relopt.RelOptCost;
import org.eigenbase.relopt.RelOptPlanner;
import org.eigenbase.relopt.RelTraitSet;
import org.eigenbase.reltype.RelDataType;
import org.eigenbase.rex.RexNode;
import org.eigenbase.rex.RexProgram;

/**
*
*/
class CascadingProjectRel extends ProjectRelBase implements CascadingRelNode
  {
  /**
   * Creates a Project.
   *
   * @param cluster       Cluster this relational expression belongs to
   * @param traits        traits of this rel
   * @param child         input relational expression
   * @param exps          set of expressions for the input columns
   * @param rowType       output row type
   * @param flags         values as in {@link org.eigenbase.rel.ProjectRelBase.Flags}
   * @param collationList List of sort keys
   */
  protected CascadingProjectRel( RelOptCluster cluster, RelTraitSet traits, RelNode child, List<RexNode> exps, RelDataType rowType, int flags, final List<RelCollation> collationList )
    {
    super( cluster, traits, child, exps, rowType, flags, collationList );

    assert child.getTraitSet().contains( Cascading.CONVENTION );
    }

  @Override
  public RelNode copy( RelTraitSet traitSet, List<RelNode> inputs )
    {
    return new CascadingProjectRel(
      getCluster(),
      traitSet,
      sole( inputs ),
      exps,
      rowType,
      flags,
      getCollationList() );
    }

  @Override

  public RelOptCost computeSelfCost( RelOptPlanner planner )
    {
    return super.computeSelfCost( planner ).multiplyBy( .1 );
    }

  public Branch visitChild( Stack stack )
    {
    RexProgram program = RexProgram.create( getChild().getRowType(), exps, null, getRowType(), getCluster().getRexBuilder() );

    return CalcProjectUtil.resolveBranch( stack, this, program );
    }
  }
TOP

Related Classes of cascading.lingual.optiq.CascadingProjectRel

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.