You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by yongtang <gi...@git.apache.org> on 2017/03/17 02:22:33 UTC

[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

GitHub user yongtang opened a pull request:

    https://github.com/apache/spark/pull/17328

    [SPARK-19975][Python][SQL] Add map_keys and map_values functions to Python

    ## What changes were proposed in this pull request?
    
    This fix tries to address the issue in SPARK-19975 where we
    have `map_keys` and `map_values` functions in SQL yet there
    is no Python equivalent functions.
    
    This fix adds `map_keys` and `map_values` functions to Python.
    
    ## How was this patch tested?
    
    This fix is tested manually (See Python docs for examples).


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/yongtang/spark SPARK-19975

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/17328.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #17328
    
----
commit 021b5513b9dbea546bc577e2e1b939dc8ebe85aa
Author: Yong Tang <yo...@outlook.com>
Date:   2017-03-17T02:17:57Z

    [SPARK-19975][Python][SQL] Add map_keys and map_values functions to Python
    
    This fix tries to address the issue in SPARK-19975 where we
    have `map_keys` and `map_values` functions in SQL yet there
    is no Python equivalent functions.
    
    This fix adds `map_keys` and `map_values` functions to Python.
    
    This fix is tested manually (See Python docs for examples).
    
    Signed-off-by: Yong Tang <yo...@outlook.com>

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by yongtang <gi...@git.apache.org>.
Github user yongtang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17328#discussion_r122748299
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -3128,6 +3128,20 @@ object functions {
        */
       def sort_array(e: Column, asc: Boolean): Column = withExpr { SortArray(e.expr, lit(asc).expr) }
     
    +  /**
    +   * Returns an unordered array containing the keys of the map.
    +   * @group collection_funcs
    +   * @since 2.2.0
    --- End diff --
    
    @gatorsmile Thanks. The PR has been updated with version changed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by HyukjinKwon <gi...@git.apache.org>.
Github user HyukjinKwon commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    +1 for this PR.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by yongtang <gi...@git.apache.org>.
Github user yongtang commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    Thanks for the review. The PR has been updated with version string fixed. Please take a look.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    Can one of the admins verify this patch?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17328#discussion_r122615581
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -3128,6 +3128,20 @@ object functions {
        */
       def sort_array(e: Column, asc: Boolean): Column = withExpr { SortArray(e.expr, lit(asc).expr) }
     
    +  /**
    +   * Returns an unordered array containing the keys of the map.
    +   * @group collection_funcs
    +   * @since 2.2.0
    +   */
    +  def map_keys(e: Column): Column = withExpr { MapKeys(e.expr) }
    +
    +  /**
    +   * Returns an unordered array containing the values of the map.
    +   * @group collection_funcs
    +   * @since 2.2.0
    --- End diff --
    
    The same here.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by holdenk <gi...@git.apache.org>.
Github user holdenk commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    jenkins, ok to test.
    Does someone on the SQL side have a chance to look at this to say if its something they want added to the DataFrame API? Maybe @marmbrus ? I'm a little hesistant with adding it to functions in this way since the `map_values` has a different meaning than `mapValues` in RDD land and it seems like that could cause some confusion.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    **[Test build #78260 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/78260/testReport)** for PR 17328 at commit [`8e920e4`](https://github.com/apache/spark/commit/8e920e48b01dfe0f8eb0b5220ef0c0b11f456895).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    Merged build finished. Test PASSed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    LGTM, merging to master.
    
    Since the correctness has been covered by the Python test cases, we can merge it now. If possible, could you also submit a follow-up PR to add a test case? Thanks!


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/spark/pull/17328


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/78260/
    Test PASSed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by yongtang <gi...@git.apache.org>.
Github user yongtang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17328#discussion_r122748372
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -1854,6 +1854,46 @@ def sort_array(col, asc=True):
         return Column(sc._jvm.functions.sort_array(_to_java_column(col), asc))
     
     
    +@since(2.2)
    +def map_keys(col):
    +    """
    +    Collection function: Returns an unordered array containing the keys of the map.
    +
    +    :param col: name of column or expression
    +
    +    >>> from pyspark.sql.functions import map_keys
    +    >>> df = spark.sql("SELECT map(1, 'a', 2, 'b') as data")
    +    >>> df.select(map_keys("data").alias("keys")).show()
    +    +------+
    +    |  keys|
    +    +------+
    +    |[1, 2]|
    +    +------+
    +    """
    +    sc = SparkContext._active_spark_context
    +    return Column(sc._jvm.functions.map_keys(_to_java_column(col)))
    +
    +
    +@since(2.2)
    --- End diff --
    
    Done.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    **[Test build #78242 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/78242/testReport)** for PR 17328 at commit [`021b551`](https://github.com/apache/spark/commit/021b5513b9dbea546bc577e2e1b939dc8ebe85aa).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    ok to test 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by maver1ck <gi...@git.apache.org>.
Github user maver1ck commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    Looks good :)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    **[Test build #78260 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/78260/testReport)** for PR 17328 at commit [`8e920e4`](https://github.com/apache/spark/commit/8e920e48b01dfe0f8eb0b5220ef0c0b11f456895).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    Test PASSed.
    Refer to this link for build results (access rights to CI server needed): 
    https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/78242/
    Test PASSed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by yongtang <gi...@git.apache.org>.
Github user yongtang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17328#discussion_r122748494
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -3128,6 +3128,20 @@ object functions {
        */
       def sort_array(e: Column, asc: Boolean): Column = withExpr { SortArray(e.expr, lit(asc).expr) }
     
    +  /**
    +   * Returns an unordered array containing the keys of the map.
    +   * @group collection_funcs
    +   * @since 2.2.0
    +   */
    +  def map_keys(e: Column): Column = withExpr { MapKeys(e.expr) }
    +
    +  /**
    +   * Returns an unordered array containing the values of the map.
    +   * @group collection_funcs
    +   * @since 2.2.0
    --- End diff --
    
    Done.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17328#discussion_r122615541
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/functions.scala ---
    @@ -3128,6 +3128,20 @@ object functions {
        */
       def sort_array(e: Column, asc: Boolean): Column = withExpr { SortArray(e.expr, lit(asc).expr) }
     
    +  /**
    +   * Returns an unordered array containing the keys of the map.
    +   * @group collection_funcs
    +   * @since 2.2.0
    --- End diff --
    
    @yongtang Could you please change it to `2.3.0`?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by yongtang <gi...@git.apache.org>.
Github user yongtang commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17328#discussion_r122748347
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -1854,6 +1854,46 @@ def sort_array(col, asc=True):
         return Column(sc._jvm.functions.sort_array(_to_java_column(col), asc))
     
     
    +@since(2.2)
    --- End diff --
    
    Thanks. Done.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17328#discussion_r122615576
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -1854,6 +1854,46 @@ def sort_array(col, asc=True):
         return Column(sc._jvm.functions.sort_array(_to_java_column(col), asc))
     
     
    +@since(2.2)
    +def map_keys(col):
    +    """
    +    Collection function: Returns an unordered array containing the keys of the map.
    +
    +    :param col: name of column or expression
    +
    +    >>> from pyspark.sql.functions import map_keys
    +    >>> df = spark.sql("SELECT map(1, 'a', 2, 'b') as data")
    +    >>> df.select(map_keys("data").alias("keys")).show()
    +    +------+
    +    |  keys|
    +    +------+
    +    |[1, 2]|
    +    +------+
    +    """
    +    sc = SparkContext._active_spark_context
    +    return Column(sc._jvm.functions.map_keys(_to_java_column(col)))
    +
    +
    +@since(2.2)
    --- End diff --
    
    The same here.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by AmplabJenkins <gi...@git.apache.org>.
Github user AmplabJenkins commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    Merged build finished. Test PASSed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark pull request #17328: [SPARK-19975][Python][SQL] Add map_keys and map_v...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17328#discussion_r122615565
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -1854,6 +1854,46 @@ def sort_array(col, asc=True):
         return Column(sc._jvm.functions.sort_array(_to_java_column(col), asc))
     
     
    +@since(2.2)
    --- End diff --
    
    The same here.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by SparkQA <gi...@git.apache.org>.
Github user SparkQA commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    **[Test build #78242 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/78242/testReport)** for PR 17328 at commit [`021b551`](https://github.com/apache/spark/commit/021b5513b9dbea546bc577e2e1b939dc8ebe85aa).
     * This patch passes all tests.
     * This patch merges cleanly.
     * This patch adds no public classes.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org


[GitHub] spark issue #17328: [SPARK-19975][Python][SQL] Add map_keys and map_values f...

Posted by gatorsmile <gi...@git.apache.org>.
Github user gatorsmile commented on the issue:

    https://github.com/apache/spark/pull/17328
  
    LGTM except the comments about versions. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org