SNOW-1869802: Pivot converts 0 to None #2817
Labels
bug
Something isn't working
local testing
Local Testing issues/PRs
status-triage_done
Initial triage done, will be further handled by the driver team
What version of Python are you using?
3.11.9
What are the Snowpark Python and pandas versions in the environment?
pandas==2.2.3
snowflake-snowpark-python==1.26.0
What did you do?
In Snowflake this results in:
[Row(_1=1, 'A'=10, 'B'=0), Row(_1=2, 'A'=11, 'B'=12)]
But in local testing:
[Row(_1=1, A=10, B=None), Row(_1=2, A=11, B=12)]
0 gets converted to None
The text was updated successfully, but these errors were encountered: