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
Is your feature request related to a problem? Please describe.
Spark is inconsistent in that for pivot NaN != NaN, but for our code it is. This is because we are using a GpuEqualTo internally to check if the value matches the pivot column, and GpuEqualTo has fixes in it to make NaN == NaN. We can fix this with an alternative GpuEqualTo that removes the NaN == NaN fixes.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Spark is inconsistent in that for pivot NaN != NaN, but for our code it is. This is because we are using a GpuEqualTo internally to check if the value matches the pivot column, and GpuEqualTo has fixes in it to make NaN == NaN. We can fix this with an alternative GpuEqualTo that removes the NaN == NaN fixes.
The text was updated successfully, but these errors were encountered: