Skip to content
Snippets Groups Projects

F fix strict values in table columns

Merged Florian Spreckelsen requested to merge f-fix-strict-values-in-table-columns into dev
4 unresolved threads
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -338,11 +338,11 @@ class TableImporter():
# float, because CaosDB does not have different sizes anyway.
col_dtype = df.dtypes[key]
if not strict and not np.issubdtype(col_dtype, datatype):
issub = np.issubdtype
# These special cases should be fine.
if issub(col_dtype, np.integer) and issub(datatype, np.floating):
df[key] = df[key].astype(datatype)
elif datatype == str:
if ((datatype == str)
or (np.issubdtype(col_dtype, np.integer)
and np.issubdtype(datatype, np.floating))
):
df[key] = df[key].astype(datatype)
# Now check each element
Loading