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
Converting documents that contain empty resister with last-writer-wins conflict resolver causes Exception: java.lang.UnsupportedOperationException: empty.max
This is because the empty register is viewed present as presSets has key "key" so JSON converter tries to convert the empty register to JSON value, which is impossible.
By the way Node#values query works correctly against empty register because it returns register's values that is empty. An implementation depends on Node states and does not use its query interface may hit this problem.
The text was updated successfully, but these errors were encountered:
Overriding causally dependent primitive value with empty list or map creates an empty register in document state.
Converting documents that contain empty resister with last-writer-wins conflict resolver causes
Exception: java.lang.UnsupportedOperationException: empty.max
This is because the empty register is viewed present as
presSets
has key "key" so JSON converter tries to convert the empty register to JSON value, which is impossible.By the way
Node#values
query works correctly against empty register because it returns register's values that is empty. An implementation depends on Node states and does not use its query interface may hit this problem.The text was updated successfully, but these errors were encountered: