I'm getting the following error when uploading the below sample:
Error:
Error on piom GET ROW: 60, Text: Column length error, row not returned.
Error at record number 1
Sample
calendar_date
'2019-01-01'
'2019-01-02'
'2019-01-03'
I believe that this due to the length of the column header being longer than the max length of any of the values in the column, even though it is skipping this record it still errors.
The workaround I have currently is to change line 27 of api_load\api.py
from
size = df[col].map(len).max()
to
size = df[col].map(len).max()+20