Package org.apache.calcite.sql
Class SqlDrop
java.lang.Object
org.apache.calcite.sql.SqlNode
org.apache.calcite.sql.SqlCall
org.apache.calcite.sql.SqlDdl
org.apache.calcite.sql.SqlDrop
- All Implemented Interfaces:
Cloneable
- Direct Known Subclasses:
SqlDropObject
,SqlDropSchema
Base class for an DROP statements parse tree nodes. The portion of the
statement covered by this class is "DROP". Subclasses handle
whatever comes afterwards.
-
Field Summary
Fields inherited from class org.apache.calcite.sql.SqlDdl
DDL_OPERATOR
Fields inherited from class org.apache.calcite.sql.SqlNode
EMPTY_ARRAY, pos
-
Constructor Summary
ModifierConstructorDescriptionprotected
SqlDrop
(SqlParserPos pos) Deprecated.protected
SqlDrop
(SqlOperator operator, SqlParserPos pos, boolean ifExists) Creates a SqlDrop. -
Method Summary
Methods inherited from class org.apache.calcite.sql.SqlDdl
getOperator
Methods inherited from class org.apache.calcite.sql.SqlCall
accept, clone, equalsDeep, findValidOptions, getCallSignature, getFunctionQuantifier, getKind, getMonotonicity, getOperandList, isCountStar, isExpanded, operand, operandCount, setOperand, unparse, validate
Methods inherited from class org.apache.calcite.sql.SqlNode
clone, clone, cloneArray, equalDeep, equalDeep, equalsDeep, getParserPosition, isA, toList, toList, toSqlString, toSqlString, toSqlString, toString, unparseWithParentheses, validateExpr
-
Field Details
-
ifExists
public final boolean ifExistsWhether "IF EXISTS" was specified.
-
-
Constructor Details
-
SqlDrop
Creates a SqlDrop. -
SqlDrop
Deprecated.
-