[GitHub] spark pull request #20307: [SPARK-23141][SQL][PYSPARK] Support data type str...

2018-01-18 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/spark/pull/20307 --- - To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org

[GitHub] spark pull request #20307: [SPARK-23141][SQL][PYSPARK] Support data type str...

2018-01-18 Thread ueshin
Github user ueshin commented on a diff in the pull request: https://github.com/apache/spark/pull/20307#discussion_r162329537 --- Diff: python/pyspark/sql/functions.py --- @@ -2108,7 +2108,8 @@ def udf(f=None, returnType=StringType()): can fail on special rows, the

[GitHub] spark pull request #20307: [SPARK-23141][SQL][PYSPARK] Support data type str...

2018-01-18 Thread HyukjinKwon
Github user HyukjinKwon commented on a diff in the pull request: https://github.com/apache/spark/pull/20307#discussion_r162308708 --- Diff: python/pyspark/sql/functions.py --- @@ -2108,7 +2108,8 @@ def udf(f=None, returnType=StringType()): can fail on special rows, the

[GitHub] spark pull request #20307: [SPARK-23141][SQL][PYSPARK] Support data type str...

2018-01-17 Thread HyukjinKwon
Github user HyukjinKwon commented on a diff in the pull request: https://github.com/apache/spark/pull/20307#discussion_r162260542 --- Diff: python/pyspark/sql/udf.py --- @@ -310,14 +310,22 @@ def registerJavaFunction(self, name, javaClassName, returnType=None): ...

[GitHub] spark pull request #20307: [SPARK-23141][SQL][PYSPARK] Support data type str...

2018-01-17 Thread viirya
Github user viirya commented on a diff in the pull request: https://github.com/apache/spark/pull/20307#discussion_r162260194 --- Diff: python/pyspark/sql/udf.py --- @@ -310,14 +310,22 @@ def registerJavaFunction(self, name, javaClassName, returnType=None): ...

[GitHub] spark pull request #20307: [SPARK-23141][SQL][PYSPARK] Support data type str...

2018-01-17 Thread ueshin
Github user ueshin commented on a diff in the pull request: https://github.com/apache/spark/pull/20307#discussion_r162259997 --- Diff: python/pyspark/sql/udf.py --- @@ -310,14 +310,22 @@ def registerJavaFunction(self, name, javaClassName, returnType=None): ...

[GitHub] spark pull request #20307: [SPARK-23141][SQL][PYSPARK] Support data type str...

2018-01-17 Thread HyukjinKwon
Github user HyukjinKwon commented on a diff in the pull request: https://github.com/apache/spark/pull/20307#discussion_r162258962 --- Diff: python/pyspark/sql/udf.py --- @@ -310,14 +310,22 @@ def registerJavaFunction(self, name, javaClassName, returnType=None): ...

[GitHub] spark pull request #20307: [SPARK-23141][SQL][PYSPARK] Support data type str...

2018-01-17 Thread ueshin
GitHub user ueshin opened a pull request: https://github.com/apache/spark/pull/20307 [SPARK-23141][SQL][PYSPARK] Support data type string as a returnType for registerJavaFunction. ## What changes were proposed in this pull request? Currently