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 c7f8518 commit b951ad4Copy full SHA for b951ad4
doma-core/src/main/java/org/seasar/doma/jdbc/criteria/statement/EntityqlMultiInsertStatement.java
@@ -42,7 +42,7 @@ public EntityqlMultiInsertStatement(
42
*
43
* @return statement
44
*/
45
- public EntityqlMultiInsertStatement<ENTITY> onDuplicateKeyUpdate() {
+ public Statement<MultiResult<ENTITY>> onDuplicateKeyUpdate() {
46
this.duplicateKeyType = DuplicateKeyType.UPDATE;
47
return this;
48
}
@@ -52,7 +52,7 @@ public EntityqlMultiInsertStatement<ENTITY> onDuplicateKeyUpdate() {
52
53
54
55
- public EntityqlMultiInsertStatement<ENTITY> onDuplicateKeyIgnore() {
+ public Statement<MultiResult<ENTITY>> onDuplicateKeyIgnore() {
56
this.duplicateKeyType = DuplicateKeyType.IGNORE;
57
58
0 commit comments