Details
Description
Manly the issue is clarified in the following example:
Given a Dataset:
scala> data.show
a | b |
1 | 2 |
-1 | -2 |
9123146099426677101 | 9123146560113991650 |
theoretically when we call na.fill(0) nothing should change, while the current result is:
scala> data.na.fill(0).show
a | b |
1 | 2 |
-1 | -2 |
9123146099426676736 | 9123146560113991680 |
Attachments
Issue Links
- duplicates
-
SPARK-19375 na.fill() should not change the data type of column
- Closed
- links to