Class MySQLExplainStatement
- java.lang.Object
-
- org.apache.shardingsphere.sql.parser.sql.common.statement.AbstractSQLStatement
-
- org.apache.shardingsphere.sql.parser.sql.common.statement.dal.ExplainStatement
-
- org.apache.shardingsphere.sql.parser.sql.dialect.statement.mysql.dal.MySQLExplainStatement
-
- All Implemented Interfaces:
ASTNode,DALStatement,SQLStatement,MySQLStatement
public final class MySQLExplainStatement extends ExplainStatement implements MySQLStatement
MySQL explain statement.
-
-
Constructor Summary
Constructors Constructor Description MySQLExplainStatement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<ColumnSegment>getColumnWild()Get column segment.Optional<SimpleTableSegment>getTable()Get simple table segment.-
Methods inherited from class org.apache.shardingsphere.sql.parser.sql.common.statement.dal.ExplainStatement
getStatement
-
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
-
getTable
public Optional<SimpleTableSegment> getTable()
Get simple table segment.- Returns:
- simple table segment
-
getColumnWild
public Optional<ColumnSegment> getColumnWild()
Get column segment.- Returns:
- column segment
-
-