Package org.apache.tajo.exception

Examples of org.apache.tajo.exception.UnimplementedException


  }

  @Override
  public CatalogProtos.PartitionDescProto getPartition(String partitionName) throws CatalogException {
    // TODO
    throw new UnimplementedException("getPartition is not implemented");
  }
View Full Code Here



  @Override
  public CatalogProtos.PartitionsProto getPartitions(String tableName) throws CatalogException {
    // TODO
    throw new UnimplementedException("getPartitions is not implemented");
  }
View Full Code Here

    return get(fieldId).asByteArray();
  }

  @Override
  public InetAddress getIPv6(int fieldId) {
    throw new UnimplementedException();
  }
View Full Code Here

    throw new UnimplementedException();
  }
 
  @Override
  public byte[] getIPv6Bytes(int fieldId) {
    throw new UnimplementedException();
  }
View Full Code Here

        .build();
  }

  @Override
  public void workerHeartbeat(TajoMasterProtocol.TajoHeartbeat request) {
    throw new UnimplementedException("workerHeartbeat");
  }
View Full Code Here

    throw new UnimplementedException("workerHeartbeat");
  }

  @Override
  public void releaseWorkerResource(ExecutionBlockId ebId, YarnProtos.ContainerIdProto containerId) {
    throw new UnimplementedException("releaseWorkerResource");
  }
View Full Code Here

    throw new UnimplementedException("releaseWorkerResource");
  }

  @Override
  public WorkerResource allocateQueryMaster(QueryInProgress queryInProgress) {
    throw new UnimplementedException("allocateQueryMaster");
  }
View Full Code Here

  @Override
  public void allocateWorkerResources(
      TajoMasterProtocol.WorkerResourceAllocationRequest request,
      RpcCallback<TajoMasterProtocol.WorkerResourceAllocationResponse> rpcCallBack) {
    throw new UnimplementedException("allocateWorkerResources");
  }
View Full Code Here

TOP

Related Classes of org.apache.tajo.exception.UnimplementedException

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.