Uh oh!
There was an error while loading. Please reload this page.
[SPARK-13197][SQL] When trying to select from the data frame which contains the columns with . in it, it is throwing exception. - #11079
Conversation
Editing the select method to allow the select of columns with . in it.
Added testcases for SPARK-13197 fix - selecting the dataframe with columns containing . in it
AmplabJenkins
commented
Feb 4, 2016
Can one of the admins verify this patch? |
hvanhovell
commented
Feb 4, 2016
I think the same problem is solved in: #10943 |
thomastechs
commented
Feb 5, 2016
@hvanhovell and @jayadevanmurali We checked the source code change in the referenced PR@10943. That PR is resolving the similar issue in the drop scenario. But this current fix would be for the explicit select statements as stated in our bug.Also we double checked whether the fix @PR-10943 would resolve the select issue . But, it does not resolve this bug. So ,please let us know your comments. |
We should use So, I think this is NOT a bug, current behavior is expected. |
HyukjinKwon
commented
Sep 12, 2016
+1 for not a problem. |
When trying to select from the data frame which contains the columns with . in it, it is throwing exception.
Added the fix in the select method to incorporate the selection of columns containing . in it