org.apache.hadoop.hive.ql.plan
Class DropTableDesc

java.lang.Object
  extended by org.apache.hadoop.hive.ql.plan.DDLDesc
      extended by org.apache.hadoop.hive.ql.plan.DropTableDesc
All Implemented Interfaces:
Serializable

public class DropTableDesc
extends DDLDesc
implements Serializable

DropTableDesc.

See Also:
Serialized Form

Constructor Summary
DropTableDesc()
           
DropTableDesc(String tableName, boolean expectView)
           
DropTableDesc(String tableName, List<? extends Map<String,String>> partSpecs)
           
 
Method Summary
 boolean getExpectView()
           
 ArrayList<LinkedHashMap<String,String>> getPartSpecs()
           
 String getTableName()
           
 void setExpectView(boolean expectView)
           
 void setPartSpecs(ArrayList<LinkedHashMap<String,String>> partSpecs)
           
 void setTableName(String tableName)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DropTableDesc

public DropTableDesc()

DropTableDesc

public DropTableDesc(String tableName,
                     boolean expectView)
Parameters:
tableName -

DropTableDesc

public DropTableDesc(String tableName,
                     List<? extends Map<String,String>> partSpecs)
Method Detail

getTableName

public String getTableName()
Returns:
the tableName

setTableName

public void setTableName(String tableName)
Parameters:
tableName - the tableName to set

getPartSpecs

public ArrayList<LinkedHashMap<String,String>> getPartSpecs()
Returns:
the partSpecs

setPartSpecs

public void setPartSpecs(ArrayList<LinkedHashMap<String,String>> partSpecs)
Parameters:
partSpecs - the partSpecs to set

getExpectView

public boolean getExpectView()
Returns:
whether to expect a view being dropped

setExpectView

public void setExpectView(boolean expectView)
Parameters:
expectView - set whether to expect a view being dropped


Copyright © 2010 The Apache Software Foundation