Class CreateFunctionStatement
- java.lang.Object
-
- org.apache.shardingsphere.sql.parser.sql.common.statement.AbstractSQLStatement
-
- org.apache.shardingsphere.sql.parser.sql.common.statement.ddl.CreateFunctionStatement
-
- All Implemented Interfaces:
ASTNode,DDLStatement,SQLStatement
- Direct Known Subclasses:
MySQLCreateFunctionStatement,OpenGaussCreateFunctionStatement,OracleCreateFunctionStatement,PostgreSQLCreateFunctionStatement,SQLServerCreateFunctionStatement
public abstract class CreateFunctionStatement extends AbstractSQLStatement implements DDLStatement
Create function statement.
-
-
Constructor Summary
Constructors Constructor Description CreateFunctionStatement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<FunctionNameSegment>getFunctionName()Get function name segment.-
Methods inherited from class org.apache.shardingsphere.sql.parser.sql.common.statement.AbstractSQLStatement
addParameterMarkerSegments, getParameterCount
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.shardingsphere.sql.parser.sql.common.statement.SQLStatement
getParameterCount
-
-
-
-
Method Detail
-
getFunctionName
public Optional<FunctionNameSegment> getFunctionName()
Get function name segment.- Returns:
- function name segment
-
-