Skip to content

Commit

Permalink
fix(jdbc): rollback to fetchType None
Browse files Browse the repository at this point in the history
avoid update queries to be in autoCommit mode due to the STORE type and as a consequences don't commit the updates
  • Loading branch information
mgabelle committed Dec 6, 2024
1 parent dde6578 commit 5f7c4ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public abstract class AbstractJdbcBaseQuery extends Task implements JdbcQueryInt

@NotNull
@Builder.Default
protected FetchType fetchType = FetchType.STORE;
protected FetchType fetchType = FetchType.NONE;

@Builder.Default
protected Integer fetchSize = 10000;
Expand Down

0 comments on commit 5f7c4ee

Please sign in to comment.