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
{{ message }}
This repository has been archived by the owner on Feb 10, 2023. It is now read-only.
I believe this commit: e88e32f broke the auto-header removal in yield_rows. The issue seems to be that the column names are encoded to 'utf8' in the headers array. This means they'll be a byte string like b'hostname'. But the data columns aren't byte strings, they're unicode strings like u'hostname'. At least in python3, these two values will not compare equal, so yield_rows thinks the first row of data is not the header row and prints it out.
The text was updated successfully, but these errors were encountered:
I believe this commit: e88e32f broke the auto-header removal in
yield_rows
. The issue seems to be that the column names are encoded to 'utf8' in the headers array. This means they'll be a byte string likeb'hostname'
. But the data columns aren't byte strings, they're unicode strings likeu'hostname'
. At least in python3, these two values will not compare equal, soyield_rows
thinks the first row of data is not the header row and prints it out.The text was updated successfully, but these errors were encountered: