Uses of Class
org.apache.hadoop.hive.metastore.api.Order

Packages that use Order
org.apache.hadoop.hive.metastore.api   
org.apache.hadoop.hive.ql.exec Hive QL execution tasks, operators, functions and other handlers. 
org.apache.hadoop.hive.ql.metadata   
org.apache.hadoop.hive.ql.parse   
org.apache.hadoop.hive.ql.plan   
 

Uses of Order in org.apache.hadoop.hive.metastore.api
 

Methods in org.apache.hadoop.hive.metastore.api that return Order
 Order Order.deepCopy()
           
 

Methods in org.apache.hadoop.hive.metastore.api that return types with arguments of type Order
 List<Order> StorageDescriptor.getSortCols()
           
 Iterator<Order> StorageDescriptor.getSortColsIterator()
           
 

Methods in org.apache.hadoop.hive.metastore.api with parameters of type Order
 void StorageDescriptor.addToSortCols(Order elem)
           
 int Order.compareTo(Order other)
           
 boolean Order.equals(Order that)
           
 

Method parameters in org.apache.hadoop.hive.metastore.api with type arguments of type Order
 void StorageDescriptor.setSortCols(List<Order> sortCols)
           
 

Constructors in org.apache.hadoop.hive.metastore.api with parameters of type Order
Order(Order other)
          Performs a deep copy on other.
 

Constructor parameters in org.apache.hadoop.hive.metastore.api with type arguments of type Order
StorageDescriptor(List<FieldSchema> cols, String location, String inputFormat, String outputFormat, boolean compressed, int numBuckets, SerDeInfo serdeInfo, List<String> bucketCols, List<Order> sortCols, Map<String,String> parameters)
           
 

Uses of Order in org.apache.hadoop.hive.ql.exec
 

Method parameters in org.apache.hadoop.hive.ql.exec with type arguments of type Order
static List<String> Utilities.getColumnNamesFromSortCols(List<Order> sortCols)
           
 

Uses of Order in org.apache.hadoop.hive.ql.metadata
 

Methods in org.apache.hadoop.hive.ql.metadata that return types with arguments of type Order
 List<Order> Table.getSortCols()
           
 List<Order> Partition.getSortCols()
           
 

Method parameters in org.apache.hadoop.hive.ql.metadata with type arguments of type Order
 void Table.setSortCols(List<Order> sortOrder)
           
 

Uses of Order in org.apache.hadoop.hive.ql.parse
 

Methods in org.apache.hadoop.hive.ql.parse that return types with arguments of type Order
protected  List<Order> BaseSemanticAnalyzer.getColumnNamesOrder(ASTNode ast)
           
 

Uses of Order in org.apache.hadoop.hive.ql.plan
 

Methods in org.apache.hadoop.hive.ql.plan that return types with arguments of type Order
 ArrayList<Order> CreateTableDesc.getSortCols()
           
 ArrayList<Order> AlterTableDesc.getSortColumns()
           
 

Method parameters in org.apache.hadoop.hive.ql.plan with type arguments of type Order
 void CreateTableDesc.setSortCols(ArrayList<Order> sortCols)
           
 void AlterTableDesc.setSortColumns(ArrayList<Order> sortColumns)
           
 

Constructor parameters in org.apache.hadoop.hive.ql.plan with type arguments of type Order
AlterTableDesc(String tableName, int numBuckets, List<String> bucketCols, List<Order> sortCols)
           
CreateTableDesc(String tableName, boolean isExternal, List<FieldSchema> cols, List<FieldSchema> partCols, List<String> bucketCols, List<Order> sortCols, int numBuckets, String fieldDelim, String fieldEscape, String collItemDelim, String mapKeyDelim, String lineDelim, String comment, String inputFormat, String outputFormat, String location, String serName, String storageHandler, Map<String,String> serdeProps, Map<String,String> tblProps, boolean ifNotExists)
           
 



Copyright © 2011 The Apache Software Foundation