We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ali-rds/lib/operator.js
Lines 163 to 166 in 004713c
比如
update({ is_read: 1, gmt_modified: 'now()' }, { where: { is_read: 0, user_id: 'xxx' }, });
这种情况 转换的 sql 会是
update xxx set gmt_modified = now() where is_read = 0 and user_id = 'xxx'
预期应该是
update xxx set gmt_modified = now(), is_read = 1 where is_read = 0 and user_id = 'xxx'
The text was updated successfully, but these errors were encountered:
cc @fengmk2 @dead-horse
Sorry, something went wrong.
No branches or pull requests
ali-rds/lib/operator.js
Lines 163 to 166 in 004713c
比如
这种情况 转换的 sql 会是
预期应该是
The text was updated successfully, but these errors were encountered: