Package org.h2.command.dml
Class MergeUsing.When
java.lang.Object
org.h2.command.dml.MergeUsing.When
- All Implemented Interfaces:
HasSQL
- Direct Known Subclasses:
MergeUsing.WhenMatchedThenDelete,MergeUsing.WhenMatchedThenUpdate,MergeUsing.WhenNotMatched
- Enclosing class:
- MergeUsing
Abstract WHEN command of the MERGE statement.
-
Field Summary
Fields inherited from interface org.h2.util.HasSQL
ADD_PLAN_INFORMATION, DEFAULT_SQL_FLAGS, NO_CASTS, QUOTE_ONLY_WHEN_REQUIRED, REPLACE_LOBS_FOR_TRACE, TRACE_SQL_FLAGS -
Method Summary
Modifier and TypeMethodDescriptiongetSQL(StringBuilder builder, int sqlFlags) Appends the SQL statement of this object to the specified builder.voidsetAndCondition(Expression andCondition) Sets the specified AND condition.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.h2.util.HasSQL
getSQL, getTraceSQL
-
Method Details
-
setAndCondition
Sets the specified AND condition.- Parameters:
andCondition- AND condition to set
-
getSQL
Description copied from interface:HasSQLAppends the SQL statement of this object to the specified builder.
-