Preserve NoneType types in UUID fields #1873
joshmatthews-ch
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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
NoneType
types are not cast to strings?Beta Was this translation helpful? Give feedback.
All reactions