Closed SpheMakh closed 5 years ago
It should probably just accept strings and tuples
Column handling logic is failing in some fashion here:
Referencing group_cols
instead of index_cols
on line 788.
and probably here:
The
elif not isinstance(something_cols, list):
something_cols = [something_cols]
probably needs to be changed to:
if not isinstance(something_cols, list)
something_cols = [something_cols]
Fixed by #40. Workaround till next release is to use lists of strings when supplying column names.
Description
When a parse a malformed tuple to xds_from_table does not raise an exception but it ignores the specified entry. In the example below, the columns is parsed a malformed tuple
("DATA")
No exception is raised but the DATA column is not loaded.
When I use a proper tuple
("DATA",)
it works