Skip to content

Commit

Permalink
fix KtUpdateChainWrapper setSql param not contains * problem
Browse files Browse the repository at this point in the history
  • Loading branch information
VampireAchao committed Mar 29, 2024
1 parent 3b8cf84 commit 81bcb97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ open class KtUpdateChainWrapper<T : Any>(
}

override fun setSql(condition: Boolean, setSql: String, vararg params: Any): KtUpdateChainWrapper<T> {
wrapperChildren.setSql(condition, setSql, params)
wrapperChildren.setSql(condition, setSql, *params)
return typedThis
}

Expand Down

0 comments on commit 81bcb97

Please sign in to comment.