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
{{ message }}
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
If we use copy() within txn(), the store will happen, but the old values will not be logged before the update.
Go compiler replaces copy with a runtime call very early during compilation. So during ssa creation, there is no easy way to identify a node which was originally "OCOPY" node.
Ideally go-pmem needs to support transactional copy() semantics within a txn() block OR
throw a syntax error if user uses copy() within txn() block.
The text was updated successfully, but these errors were encountered:
If we use copy() within txn(), the store will happen, but the old values will not be logged before the update.
Go compiler replaces copy with a runtime call very early during compilation. So during ssa creation, there is no easy way to identify a node which was originally "OCOPY" node.
Ideally go-pmem needs to support transactional copy() semantics within a txn() block OR
throw a syntax error if user uses copy() within txn() block.
The text was updated successfully, but these errors were encountered: