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
We want to transfer 20 from name=X to name=Y. This is not possible using a single account, but this is possible by splitting the transfer into multiple transactions:
Source
Destination
Delta
X01
Y03
15
X02
Y03
5
Alternatively:
Source
Destination
Delta
X01
Y03
10
X02
Y03
10
Whichever strategy we want to use, this is not possible with the current SQL procedures.
To implement this with atomic transactions on MySQL, we may need to create a table storing a temporary list of accounts matching a label selector, then perform operations based on this temporary list.
The text was updated successfully, but these errors were encountered:
For example, if we have a database like this:
We want to transfer 20 from
name=X
toname=Y
. This is not possible using a single account, but this is possible by splitting the transfer into multiple transactions:Alternatively:
Whichever strategy we want to use, this is not possible with the current SQL procedures.
To implement this with atomic transactions on MySQL, we may need to create a table storing a temporary list of accounts matching a label selector, then perform operations based on this temporary list.
The text was updated successfully, but these errors were encountered: