File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
doma-processor/src/main/java/org/seasar/doma/internal/apt/annot Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ public InsertAnnot newInsertAnnot(AnnotationMirror annotation) {
329329 */
330330 public MultiInsertAnnot newMultiInsertAnnot (AnnotationMirror annotation ) {
331331 assertNotNull (annotation );
332- ReturningAnnot returningAnnot = newReturningAnnot (annotation , ModifyAnnot .RETURNING );
332+ ReturningAnnot returningAnnot = newReturningAnnot (annotation , MultiInsertAnnot .RETURNING );
333333 Map <String , AnnotationValue > valuesWithDefaults =
334334 ctx .getMoreElements ().getValuesWithDefaults (annotation );
335335 return new MultiInsertAnnot (annotation , returningAnnot , valuesWithDefaults );
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ public class MultiInsertAnnot extends AbstractAnnot {
3535 private static final String SQL_LOG = "sqlLog" ;
3636 private static final String DUPLICATE_KEY_TYPE = "duplicateKeyType" ;
3737 private static final String DUPLICATE_KEYS = "duplicateKeys" ;
38+ static final String RETURNING = "returning" ;
3839
3940 private final AnnotationValue queryTimeout ;
4041 private final AnnotationValue include ;
You can’t perform that action at this time.
0 commit comments