Package sql.optimizers.index

Examples of sql.optimizers.index.IndexTranslator


    _schema = schema;
    _tan = tan;
    _map = map;
    _affectedComponent = queryPlan.getLastComponent();

    _it = new IndexTranslator(_schema, _tan);
  }
View Full Code Here


  public IndexWhereVisitor(Component affectedComponent, Schema schema, TableAliasName tan) {
    _affectedComponent = affectedComponent;
    _schema = schema;
    _tan = tan;
    _it = new IndexTranslator(_schema, _tan);

    _affectedComponent = affectedComponent;
  }
View Full Code Here

  public IndexJoinHashVisitor(Schema schema, Component affectedComponent, TableAliasName tan) {
    _schema = schema;
    _affectedComponent = affectedComponent;
    _tan = tan;

    _it = new IndexTranslator(_schema, _tan);
  }
View Full Code Here

TOP

Related Classes of sql.optimizers.index.IndexTranslator

Copyright © 2018 www.massapicom. 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.