Examples of ArraySegment


Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

    private PathSegment convertLiteral(RexLiteral literal) {
      switch (literal.getType().getSqlTypeName()) {
      case CHAR:
        return new NameSegment(RexLiteral.stringValue(literal));
      case INTEGER:
        return new ArraySegment(RexLiteral.intValue(literal));
      default:
        return null;
      }
    }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

    private PathSegment convertLiteral(RexLiteral literal) {
      switch (literal.getType().getSqlTypeName()) {
      case CHAR:
        return new NameSegment(RexLiteral.stringValue(literal));
      case INTEGER:
        return new ArraySegment(RexLiteral.intValue(literal));
      default:
        return null;
      }
    }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

  }

  private static PathSegment getPathSegment(NamePart n) {
    PathSegment child = n.hasChild() ? getPathSegment(n.getChild()) : null;
    if (n.getType() == Type.ARRAY) {
      return new ArraySegment(child);
    } else {
      return new NameSegment(n.getName(), child);
    }
  }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

    NameSegment newRoot = rootSegment.cloneWithNewChild(new NameSegment(childPath));
    return new SchemaPath(newRoot);
  }

  public SchemaPath getUnindexedArrayChild() {
    NameSegment newRoot = rootSegment.cloneWithNewChild(new ArraySegment(null));
    return new SchemaPath(newRoot);
  }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

    NameSegment newRoot = rootSegment.cloneWithNewChild(new ArraySegment(null));
    return new SchemaPath(newRoot);
  }

  public SchemaPath getChild(int index) {
    NameSegment newRoot = rootSegment.cloneWithNewChild(new ArraySegment(index));
    return new SchemaPath(newRoot);
  }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

  }

  private static PathSegment getPathSegment(NamePart n){
    PathSegment child = n.hasChild() ? getPathSegment(n.getChild()) : null;
    if(n.getType() == Type.ARRAY){
      return new ArraySegment(child);
    }else{
      return new NameSegment(n.getName(), child);
    }
  }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

    NameSegment newRoot = rootSegment.cloneWithNewChild(new NameSegment(childPath));
    return new SchemaPath(newRoot);
  }

  public SchemaPath getUnindexedArrayChild(){
    NameSegment newRoot = rootSegment.cloneWithNewChild(new ArraySegment(null));
    return new SchemaPath(newRoot);
  }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

    NameSegment newRoot = rootSegment.cloneWithNewChild(new ArraySegment(null));
    return new SchemaPath(newRoot);
  }

  public SchemaPath getChild(int index){
    NameSegment newRoot = rootSegment.cloneWithNewChild(new ArraySegment(index));
    return new SchemaPath(newRoot);
  }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

  }

  private static PathSegment getPathSegment(NamePart n){
    PathSegment child = n.hasChild() ? getPathSegment(n.getChild()) : null;
    if(n.getType() == Type.ARRAY){
      return new ArraySegment(child);
    }else{
      return new NameSegment(n.getName(), child);
    }
  }
View Full Code Here

Examples of org.apache.drill.common.expression.PathSegment.ArraySegment

    NameSegment newRoot = rootSegment.cloneWithNewChild(new NameSegment(childPath));
    return new SchemaPath(newRoot);
  }

  public SchemaPath getUnindexedArrayChild(){
    NameSegment newRoot = rootSegment.cloneWithNewChild(new ArraySegment(null));
    return new SchemaPath(newRoot);
  }
View Full Code Here
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.