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
this may result in inconsistent behaviour in the following case:
read_optimized = false
node a, node b already exist in database
add_edge(a, b)
delete_node(a)
called concurrently
add_edge(a, b) will not cause delete_node(a) to roll back in this case, a possible outcome when threads finish executing is (a, b) is added but a no longer exists
The text was updated successfully, but these errors were encountered:
this may result in inconsistent behaviour in the following case:
read_optimized = false
node a, node b already exist in database
add_edge(a, b)
delete_node(a)
called concurrently
add_edge(a, b) will not cause delete_node(a) to roll back in this case, a possible outcome when threads finish executing is (a, b) is added but a no longer exists
The text was updated successfully, but these errors were encountered: