Skip to content

Commit

Permalink
Fix issue with variable update statement
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsrademakers committed Jul 11, 2019
1 parent 22645a8 commit 2a2229f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<set>
REV_ = #{revisionNext, jdbcType=INTEGER},
<if test="originalPersistentState.name != name">
NAME_ = #{name, jdbcType=VARCHAR}
NAME_ = #{name, jdbcType=VARCHAR},
</if>
<if test="(byteArrayRef != null and originalPersistentState.byteArrayRef == null) or (byteArrayRef == null and originalPersistentState.byteArrayRef != null) or (originalPersistentState.byteArrayRef != byteArrayRef.id)">
BYTEARRAY_ID_ = #{byteArrayRef, typeHandler=VariableByteArrayRefTypeHandler},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<set>
REV_ = #{revisionNext, jdbcType=INTEGER},
<if test="originalPersistentState.name != name">
NAME_ = #{name, jdbcType=VARCHAR}
NAME_ = #{name, jdbcType=VARCHAR},
</if>
<if test="originalPersistentState.executionId != executionId">
EXECUTION_ID_ = #{executionId, jdbcType=VARCHAR},
Expand Down

0 comments on commit 2a2229f

Please sign in to comment.