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
If you create a table foo whose primary key is also a foreign key, the update patch incorrectly includes the primary key, even though the DB does not allow you to update the value of the primary key.
Steps to reproduce
createtablefoo (id intprimary key);
createtablebar (id intprimary keyreferencesfoo.id, val text);
This is the Relay preset tweaking behaviour haphazardly
It’s probably something like -update:nodeId
Please file an issue; this will be a breaking change so needs to go out before release
Possible Solution
The text was updated successfully, but these errors were encountered:
Summary
If you create a table foo whose primary key is also a foreign key, the update patch incorrectly includes the primary key, even though the DB does not allow you to update the value of the primary key.
Steps to reproduce
Relevant parts of my preset:
ts
Expected results
Actual results
Additional context
From Benjie, on Discord:
This is the Relay preset tweaking behaviour haphazardly
It’s probably something like -update:nodeId
Please file an issue; this will be a breaking change so needs to go out before release
Possible Solution
The text was updated successfully, but these errors were encountered: