ruststep icon indicating copy to clipboard operation
ruststep copied to clipboard

`Tables` struct requires too large stack memory

Open termoshtt opened this issue 4 years ago • 0 comments

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.

termoshtt avatar Nov 09 '21 16:11 termoshtt