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
When I switched from wrapping TableProxy to just regular Table, I missed a conversion that TableProxy was doing automatically. I mistakenly assumed Table would do the same thing.
When reading a keyword, TableProxy does the following if the keyword points to another table.
...
case TpTable:
return ValueHolder ("Table: "+keySet.tableAttributes(fieldId).name());
...
Because I'm now wrapping Table, I could probably just return the actual Table object itself, which seems like the sensible thing to do. However at the moment it is just broken because I haven't defined a wrapper function for the case where the data type is TpTable.
The text was updated successfully, but these errors were encountered:
When I switched from wrapping
TableProxy
to just regularTable
, I missed a conversion thatTableProxy
was doing automatically. I mistakenly assumedTable
would do the same thing.When reading a keyword,
TableProxy
does the following if the keyword points to another table.Because I'm now wrapping
Table
, I could probably just return the actualTable
object itself, which seems like the sensible thing to do. However at the moment it is just broken because I haven't defined a wrapper function for the case where the data type isTpTable
.The text was updated successfully, but these errors were encountered: