What's New in Version 0.9.0
Breaking Changes
Section titled “Breaking Changes”-
When a pandas-format query has an integer column containing null values, the corresponding column in the results
DataFramenow uses pandas’ nullable integer type instead of the defaultint64type.This change allows for better handling of null values in integer columns, which now appear as
pandas.NAvalues instead ofNaNvalues like they did in earlier versions. This also ensures that these result columns are not converted to floats due to the presence of theNaNvalues.