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
When reading back into pandas DataFrame, for instance, the int64 columns has missing data with -9223372036854775808 instead of np.nan, resulting in a NON reproducible mapping.
I'm using
write_dataframe
function to write a pandas DataFrame. My context is that this dataframe containts columns of three different types:When writing to Redshift, these values are converted as such:
When I try to query using SQL, based on the column, I have to filter with:
Is this intended? I wish to map all None/NaN values of pandas into NULL values. Is this possible?
The text was updated successfully, but these errors were encountered: