Skip to content

Commit

Permalink
fix: 修正更新值重复解析问题 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
goten7 authored Dec 2, 2024
1 parent 3ec71c0 commit 2520842
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ else if (value instanceof NativeSql) {
} else {
columnFragments = SimpleSqlFragments
.of(Arrays.asList(columnMetadata.getQuoteName(), "= ?"),
Collections.singletonList(columnMetadata.encode(value)));
Collections.singletonList(value));
}
}

Expand Down

0 comments on commit 2520842

Please sign in to comment.