Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Incomplete
-
2.3.0
-
None
Description
We are currently converting dots to underscore in some cases as below in SparkR
> createDataFrame(list(list(1)), "a.a") SparkDataFrame[a_a:double] ... In FUN(X[[i]], ...) : Use a_a instead of a.a as column name
> createDataFrame(list(list(a.a = 1)))
SparkDataFrame[a_a:double]
...
In FUN(X[[i]], ...) : Use a_a instead of a.a as column name
This looks introduced in the first place due to SPARK-2775 but now it is fixed in SPARK-6898.
Attachments
Issue Links
- relates to
-
SPARK-12191 Support "." character in DataFrame column name for ML
- Resolved
- links to