Package org.apache.derby.iapi.sql.dictionary

Examples of org.apache.derby.iapi.sql.dictionary.UniqueTupleDescriptor


                Optimizable optimizable = _currentQueryBlock.optimizableList.getOptimizable( listIndex );
           
                AccessPath  ap = avoidSort ?
                    optimizable.getBestSortAvoidancePath() : optimizable.getBestAccessPath();
                JoinStrategy    js = ap.getJoinStrategy();
                UniqueTupleDescriptor   utd = OptimizerImpl.isTableFunction( optimizable ) ?
                    ((StaticMethodCallNode) ((FromVTI) ((ProjectRestrictNode) optimizable).getChildResult()).getMethodCall()).ad :
                    ap.getConglomerateDescriptor();

                OptimizerPlan   current =   (utd == null) ?
                    new OptimizerPlan.DeadEnd( getOptimizableName( optimizable ).toString() ) :
View Full Code Here


   */
  public UniqueTupleDescriptor getUniqueTupleDescriptor(UUID uuid)
  {
    for (Iterator iterator = iterator(); iterator.hasNext(); )
    {
      UniqueTupleDescriptor ud = (UniqueTupleDescriptor) iterator.next();
      if (ud.getUUID().equals(uuid))
      {
        return ud;
      }
    }
    return null;
View Full Code Here

   */
  public UniqueTupleDescriptor getUniqueTupleDescriptor(UUID uuid)
  {
    for (Iterator iterator = iterator(); iterator.hasNext(); )
    {
      UniqueTupleDescriptor ud = (UniqueTupleDescriptor) iterator.next();
      if (ud.getUUID().equals(uuid))
      {
        return ud;
      }
    }
    return null;
View Full Code Here

TOP

Related Classes of org.apache.derby.iapi.sql.dictionary.UniqueTupleDescriptor

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.