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
The DbapiReader currently stores all default values for columns as strings:
ifcolumn_props["COLUMN_DEFAULT"] isnotNoneoris_nullable:
# TODO Convert default value to the correct type, not just a stringbase_type.extra_attrs["default"] =column_props["COLUMN_DEFAULT"]
It would be better if default types matched the RecapTypes that are created (e.g. IntType would be have a extra_attrs["default"] = int(0) not a str as it is now.
The text was updated successfully, but these errors were encountered:
The DbapiReader currently stores all default values for columns as strings:
It would be better if default types matched the RecapTypes that are created (e.g.
IntType
would be have aextra_attrs["default"] = int(0)
not astr
as it is now.The text was updated successfully, but these errors were encountered: