-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
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
update 有 bug #42
Comments
这个库是不是不维护了。。。 |
update( |
if (!options.columns) {
options.columns = Object.keys(row);
} for (let i = 0; i < options.columns.length; i++) {
const column = options.columns[i];
if (column in options.where) {
continue;
} 这两句过滤了,所以没用 |
嗯,我也遇到这个问题了,这种 update 的字段同时在 where 里的,目前都是自己拼的SQL……不太明白,库里为什么要加这个限制 |
我也感觉了,更改的时候,会出现错乱 |
这个库是不是不维护了,这样的bug都不修复了 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
用例
把所有未读的 status 改成已读,这里执行下来,sets 是个
[]
The text was updated successfully, but these errors were encountered: