Package org.apache.flink.sql.parser.ddl
Class SqlDropCatalog
- java.lang.Object
-
- org.apache.calcite.sql.SqlNode
-
- org.apache.calcite.sql.SqlCall
-
- org.apache.calcite.sql.SqlDdl
-
- org.apache.calcite.sql.SqlDrop
-
- org.apache.flink.sql.parser.ddl.SqlDropCatalog
-
- All Implemented Interfaces:
Cloneable
public class SqlDropCatalog extends org.apache.calcite.sql.SqlDrop
DROP CATALOG DDL sql call.
-
-
Constructor Summary
Constructors Constructor Description SqlDropCatalog(org.apache.calcite.sql.parser.SqlParserPos pos, org.apache.calcite.sql.SqlIdentifier catalogName, boolean ifExists)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
catalogName()
org.apache.calcite.sql.SqlIdentifier
getCatalogName()
boolean
getIfExists()
List<org.apache.calcite.sql.SqlNode>
getOperandList()
void
unparse(org.apache.calcite.sql.SqlWriter writer, int leftPrec, int rightPrec)
-
Methods inherited from class org.apache.calcite.sql.SqlCall
accept, clone, equalsDeep, findValidOptions, getCallSignature, getFunctionQuantifier, getKind, getMonotonicity, isCountStar, isExpanded, operand, operandCount, setOperand, validate
-
-
-
-
Method Detail
-
getOperandList
public List<org.apache.calcite.sql.SqlNode> getOperandList()
- Specified by:
getOperandList
in classorg.apache.calcite.sql.SqlCall
-
getCatalogName
public org.apache.calcite.sql.SqlIdentifier getCatalogName()
-
getIfExists
public boolean getIfExists()
-
unparse
public void unparse(org.apache.calcite.sql.SqlWriter writer, int leftPrec, int rightPrec)
- Overrides:
unparse
in classorg.apache.calcite.sql.SqlCall
-
catalogName
public String catalogName()
-
-