Uh oh!
There was an error while loading. Please reload this page.
[SPARK-16278][SPARK-16279][SQL] Implement map_keys/map_values SQL functions - #13967
[SPARK-16278][SPARK-16279][SQL] Implement map_keys/map_values SQL functions#13967dongjoon-hyun wants to merge 4 commits into
Conversation
dongjoon-hyun
commented
Jun 29, 2016
cc @rxin and @cloud-fan . |
SparkQA
commented
Jun 29, 2016
Test build #61454 has finished for PR 13967 at commit
|
There was a problem hiding this comment.
What if we don't call copy here? It looks reasonable to copy, I'm just curious :)
There was a problem hiding this comment.
I actually didn't found the corresponding case. Is it safe?
There was a problem hiding this comment.
A similar one is GetStructField, it can get an array column from a row without copying it. Maybe it's safe to not copy here too. cc @davies
There was a problem hiding this comment.
Thank you for confirming. That's nice.
dongjoon-hyun
commented
Jun 30, 2016
Thank you for review, @rxin and @cloud-fan . |
SparkQA
commented
Jun 30, 2016
Test build #61536 has finished for PR 13967 at commit
|
There was a problem hiding this comment.
this is the default of UnaryExpression
dongjoon-hyun
commented
Jun 30, 2016
I added a For the removal from |
SparkQA
commented
Jun 30, 2016
Test build #61553 has finished for PR 13967 at commit
|
cloud-fan
commented
Jul 1, 2016
LGTM, pending jenkins |
SparkQA
commented
Jul 1, 2016
Test build #61584 has finished for PR 13967 at commit
|
dongjoon-hyun
commented
Jul 1, 2016
Hi, @cloud-fan . |
dongjoon-hyun
commented
Jul 2, 2016
Rebased to the master. |
SparkQA
commented
Jul 2, 2016
Test build #61661 has finished for PR 13967 at commit
|
cloud-fan
commented
Jul 3, 2016
thanks, merging to master! |
dongjoon-hyun
commented
Jul 3, 2016
Thank you, @cloud-fan and @rxin ! |
…ctions This PR adds `map_keys` and `map_values` SQL functions in order to remove Hive fallback. Pass the Jenkins tests including new testcases. Author: Dongjoon Hyun <dongjoon@apache.org> Closes#13967 from dongjoon-hyun/SPARK-16278. (cherry picked from commit 54b27c1) Signed-off-by: Reynold Xin <rxin@databricks.com>
What changes were proposed in this pull request?
This PR adds
map_keysandmap_valuesSQL functions in order to remove Hive fallback.How was this patch tested?
Pass the Jenkins tests including new testcases.