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
I am using this library to read data from Postgres into a Pandas dataframe and have noticed that when the datatype in the source table is uuid, null values in those columns appear in the resulting dataframe as the "None".
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I am using this library to read data from Postgres into a Pandas dataframe and have noticed that when the datatype in the source table is uuid, null values in those columns appear in the resulting dataframe as the
"None".To me this seems unexpected behaviour as it is caused by the Python decision to have
str(None) == "None".Should this be changed so that
NoneTypetypes are not cast to strings?Beta Was this translation helpful? Give feedback.
All reactions