You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests fixed for cds9 in this PR did some rather weird things like:
```js
UPDATE(Foo).with({ ID:111, bar:12 }) // would change all rows in Foo to have the same ID: 111
```
... which should rather be like that:
```js
UPDATE(Foo,{ID:111}).with({ bar:12 }) // updates Foo #111 only
```
---------
Co-authored-by: D045778 <[email protected]>
0 commit comments