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
Currently the Frame API only gives access to the names of the stored collections. It should also be easily possible to get the corresponding type (string), without having to do
auto coll = frame.get(name);
constauto type = coll->getTypeName();
This can be quite costly, as it potentially triggers the unpacking of a collection, simply to get to its type.
The text was updated successfully, but these errors were encountered:
With #413 this information would become available from the buffers as string_views, because we need that information internally to retrieve the correct schema evolution function.
Currently the Frame API only gives access to the names of the stored collections. It should also be easily possible to get the corresponding type (string), without having to do
This can be quite costly, as it potentially triggers the unpacking of a collection, simply to get to its type.
The text was updated successfully, but these errors were encountered: