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
storage_impl<>::column_name_simple() doesn't walk the 'table storage chain'
the serializer should actually call storage_impl<>::column_name(cp)
I guess this was just an oversight in the first place as column_name(column_pointer<>) exists but remained unused, and the original intention was to use it.
The text was updated successfully, but these errors were encountered:
There's a line for the statement serializer of a column_pointer that tries to get the column name like this:
This however is wrong for two reasons:
storage_impl<>::column_name_simple()
doesn't walk the 'table storage chain'storage_impl<>::column_name(cp)
I guess this was just an oversight in the first place as
column_name(column_pointer<>)
exists but remained unused, and the original intention was to use it.The text was updated successfully, but these errors were encountered: