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
std::mem::size_of<Tables>() will be size_of<HashMap<usize, XxxHolder>() * number_of_tables, but number_of_tables will be large for large EXPRESS schemas. It should be allocated on heap instead of stack.
The text was updated successfully, but these errors were encountered:
std::mem::size_of<Tables>()
will besize_of<HashMap<usize, XxxHolder>() * number_of_tables
, butnumber_of_tables
will be large for large EXPRESS schemas. It should be allocated on heap instead of stack.The text was updated successfully, but these errors were encountered: