Class OpenGaussInsertStatement
- java.lang.Object
-
- org.apache.shardingsphere.sql.parser.sql.common.statement.AbstractSQLStatement
-
- org.apache.shardingsphere.sql.parser.sql.common.statement.dml.InsertStatement
-
- org.apache.shardingsphere.sql.parser.sql.dialect.statement.opengauss.dml.OpenGaussInsertStatement
-
- All Implemented Interfaces:
ASTNode,DMLStatement,SQLStatement,OpenGaussStatement
public final class OpenGaussInsertStatement extends InsertStatement implements OpenGaussStatement
OpenGauss insert statement.
-
-
Constructor Summary
Constructors Constructor Description OpenGaussInsertStatement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<OnDuplicateKeyColumnsSegment>getOnDuplicateKeyColumns()Get on duplicate key columns segment.Optional<ReturningSegment>getReturningSegment()Get returning segment.Optional<WithSegment>getWithSegment()Get with segment.-
Methods inherited from class org.apache.shardingsphere.sql.parser.sql.common.statement.dml.InsertStatement
getColumns, getInsertColumns, getInsertSelect
-
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
-
getWithSegment
public Optional<WithSegment> getWithSegment()
Get with segment.- Returns:
- with segment.
-
getOnDuplicateKeyColumns
public Optional<OnDuplicateKeyColumnsSegment> getOnDuplicateKeyColumns()
Get on duplicate key columns segment.- Returns:
- on duplicate key columns segment
-
getReturningSegment
public Optional<ReturningSegment> getReturningSegment()
Get returning segment.- Returns:
- returning segment
-
-