We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81a648e commit d221277Copy full SHA for d221277
src/main/java/net/sf/jsqlparser/statement/insert/InsertConflictAction.java
@@ -32,15 +32,17 @@
32
*/
33
34
public class InsertConflictAction {
35
- ConflictActionType conflictActionType;
36
-
37
private final ArrayList<UpdateSet> updateSets = new ArrayList<>();
+ ConflictActionType conflictActionType;
38
Expression whereExpression;
39
40
public InsertConflictAction(ConflictActionType conflictActionType) {
41
this.conflictActionType = Objects.requireNonNull(conflictActionType, "The Conflict Action Type is mandatory and must not be Null.");
42
}
43
+ public ArrayList<UpdateSet> getUpdateSets() {
+ return updateSets;
44
+ }
45
+
46
public ConflictActionType getConflictActionType() {
47
return conflictActionType;
48
0 commit comments