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
Why does the object's cleaning function now depend on the type of collection?
The collection cleanup method now passes the node address of the collection.
For example, if it is a unidirectional list, then the node contains the next field besides the user defined type UDT.
For hashmap node, we need Pair<Key, Value> (two UDTs).
The structure is part of the node (aggregated into a node).
In general case there can be several such structures.
The type of a node can be described by a tuple of types.
Each element of a tuple is described by its own metadata.
A collection must create a description of a tuple of a node (metadata),
based on the user type descriptions (metadata) received from the client.
We need to update the implementation of collections so that,
so that the collection has enough metadata for UDT.
The text was updated successfully, but these errors were encountered:
Why does the object's cleaning function now depend on the type of collection?
For example, if it is a unidirectional list, then the node contains the next field besides the user defined type UDT.
For hashmap node, we need Pair<Key, Value> (two UDTs).
The type of a node can be described by a tuple of types.
based on the user type descriptions (metadata) received from the client.
so that the collection has enough metadata for UDT.
The text was updated successfully, but these errors were encountered: