-
Notifications
You must be signed in to change notification settings - Fork 28.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SPARK-6672][SQL] convert row to catalyst in createDataFrame(RDD[Row], ...) #5329
Conversation
Test build #29594 has started for PR 5329 at commit |
Test build #29594 has finished for PR 5329 at commit
|
Test FAILed. |
Test build #29601 has started for PR 5329 at commit |
Test build #29602 has started for PR 5329 at commit |
Test build #29601 has finished for PR 5329 at commit
|
Test PASSed. |
LGTM, merging to master. Thanks! |
Test build #29602 has finished for PR 5329 at commit
|
Test PASSed. |
…, ...) We assume that `RDD[Row]` contains Scala types. So we need to convert them into catalyst types in createDataFrame. liancheng Author: Xiangrui Meng <[email protected]> Closes #5329 from mengxr/SPARK-6672 and squashes the following commits: 2d52644 [Xiangrui Meng] set needsConversion = false in jsonRDD 06896e4 [Xiangrui Meng] add createDataFrame without conversion 4a3767b [Xiangrui Meng] convert Row to catalyst (cherry picked from commit 424e987) Signed-off-by: Michael Armbrust <[email protected]>
We assume that
RDD[Row]
contains Scala types. So we need to convert them into catalyst types in createDataFrame. @liancheng