[GitHub] [spark] AmplabJenkins commented on issue #27538: [SPARK-30785][SQL] Create table like should keep tracksPartitionsInCatalog same with source table

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27538: [SPARK-30785][SQL] Create table like 
should keep tracksPartitionsInCatalog same with source table
URL: https://github.com/apache/spark/pull/27538#issuecomment-584514793
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118210/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27538: [SPARK-30785][SQL] Create table like should keep tracksPartitionsInCatalog same with source table

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27538: [SPARK-30785][SQL] Create 
table like should keep tracksPartitionsInCatalog same with source table
URL: https://github.com/apache/spark/pull/27538#issuecomment-584514785
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27538: [SPARK-30785][SQL] Create table like should keep tracksPartitionsInCatalog same with source table

2020-02-10 Thread GitBox
SparkQA commented on issue #27538: [SPARK-30785][SQL] Create table like should 
keep tracksPartitionsInCatalog same with source table
URL: https://github.com/apache/spark/pull/27538#issuecomment-584514666
 
 
   **[Test build #118210 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118210/testReport)**
 for PR 27538 at commit 
[`eae0731`](https://github.com/apache/spark/commit/eae0731ab86a983bd11a0fcdf37c2e97e5858b7b).
* This patch **fails Spark unit tests**.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27538: [SPARK-30785][SQL] Create table like should keep tracksPartitionsInCatalog same with source table

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27538: [SPARK-30785][SQL] Create table like 
should keep tracksPartitionsInCatalog same with source table
URL: https://github.com/apache/spark/pull/27538#issuecomment-584492755
 
 
   **[Test build #118210 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118210/testReport)**
 for PR 27538 at commit 
[`eae0731`](https://github.com/apache/spark/commit/eae0731ab86a983bd11a0fcdf37c2e97e5858b7b).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27538: [SPARK-30785][SQL] Create table like should keep tracksPartitionsInCatalog same with source table

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27538: [SPARK-30785][SQL] Create table like 
should keep tracksPartitionsInCatalog same with source table
URL: https://github.com/apache/spark/pull/27538#issuecomment-584514785
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27539: [SPARK-30786] [BLOCK MANAGER] Fix Block replication failure propogation issue in BlockManager

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27539: [SPARK-30786] [BLOCK MANAGER] Fix 
Block replication failure propogation issue in BlockManager
URL: https://github.com/apache/spark/pull/27539#issuecomment-584514388
 
 
   Can one of the admins verify this patch?


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] prakharjain09 opened a new pull request #27539: [SPARK-30786] [BLOCK MANAGER] Fix Block replication failure propogation issue in BlockManager

2020-02-10 Thread GitBox
prakharjain09 opened a new pull request #27539: [SPARK-30786] [BLOCK MANAGER] 
Fix Block replication failure propogation issue in BlockManager
URL: https://github.com/apache/spark/pull/27539
 
 
   What changes were proposed in this pull request?
   Currently the uploadBlockSync api in BlockTransferService always succeeds 
irrespective of whether the BlockManager was able to successfully replicate a 
block on peer block manager or not. This PR makes sure that the 
NettyBlockRpcServer invokes onFailure callback when it is not able to replicate 
the block to itself because of any reason. The onFailure callback makes sure 
that the BlockTransferService on client side gets the failure and retry 
replication the Block on some other BlockManager. 
   
   Why are the changes needed?
   Currently the Spark Block replication retry logic is not working correctly. 
It doesn't retry on other Block managers even when replication fails on 1 of 
the peers.
   
   A user can cache an DataFrame with different replication factor. Ex - 
df.persist(StorageLevel.MEMORY_ONLY_2) - This will cache each partition at two 
different BlockManagers. When a DataFrame partition is computed first time, it 
is firstly stored locally on the local BlockManager and then it is replicated 
to other block managers based on replication factor config. The replication of 
block to other block managers might fail because of memory/network etc issues 
and so there is already provision to retry the replication on some other peer 
based on "spark.storage.maxReplicationFailures" config, Currently when this 
replication fails, the client does not know about the failure and so it doesn't 
retry on other peers. This PR fixes this issue.
   
   
   Does this PR introduce any user-facing change?
   No.
   
   How was this patch tested?
   Added Unit Test.
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27488: 
[SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by 
default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584512251
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118216/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make 
Locality wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584512181
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118214/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584512251
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118216/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
SparkQA commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw 
exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584512239
 
 
   **[Test build #118216 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118216/testReport)**
 for PR 27488 at commit 
[`549cdf4`](https://github.com/apache/spark/commit/549cdf4d1d22f34091439cc47f486dd76e2a0de8).
* This patch **fails build dependency tests**.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27488: 
[SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by 
default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584512248
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584512248
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584510148
 
 
   **[Test build #118216 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118216/testReport)**
 for PR 27488 at commit 
[`549cdf4`](https://github.com/apache/spark/commit/549cdf4d1d22f34091439cc47f486dd76e2a0de8).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
SparkQA commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait 
time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584512150
 
 
   **[Test build #118214 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118214/testReport)**
 for PR 27207 at commit 
[`e39680b`](https://github.com/apache/spark/commit/e39680b8cc6fbc01ed9094c998deed9904e2f3f8).
* This patch **fails to generate documentation**.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make 
Locality wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584512173
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make 
Locality wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584507576
 
 
   **[Test build #118214 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118214/testReport)**
 for PR 27207 at commit 
[`e39680b`](https://github.com/apache/spark/commit/e39680b8cc6fbc01ed9094c998deed9904e2f3f8).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality 
wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584512181
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118214/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality 
wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584512173
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] cloud-fan commented on issue #24902: [SPARK-28093][SQL] Fix TRIM/LTRIM/RTRIM function parameter order issue

2020-02-10 Thread GitBox
cloud-fan commented on issue #24902: [SPARK-28093][SQL] Fix TRIM/LTRIM/RTRIM 
function parameter order issue
URL: https://github.com/apache/spark/pull/24902#issuecomment-584511167
 
 
   I don't see the specification of the TRIM function parameters order in the 
SQL standard, and I assume it's vendor-specific. I agree that most SQL systems 
use the new order, but it doesn't mean the old order is wrong.
   
   More importantly, the SQL standard does define the TRIM syntax as `TRIM ( [ 
characters FROM ] string )`, and I think this is the thing we should follow. 
I'd suggest we revert this commit (how can users figure out the parameter order 
of a function is changed? TRIM is a common function and this can break many 
queries silently.). We can implement `TRIM ( [ characters FROM ] string )` in 
3.1.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584510530
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22975/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27488: 
[SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by 
default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584510562
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22976/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27488: 
[SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by 
default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584510556
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584510518
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` 
and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584510518
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584510562
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22976/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` 
and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584510530
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22975/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584510556
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] MaxGekk commented on a change in pull request #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
MaxGekk commented on a change in pull request #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#discussion_r377477732
 
 

 ##
 File path: sql/catalyst/src/main/scala/org/apache/spark/sql/types/Decimal.scala
 ##
 @@ -541,7 +541,7 @@ object Decimal {
   /** Maximum number of decimal digits a Long can represent */
   val MAX_LONG_DIGITS = 18
 
-  private val POW_10 = Array.tabulate[Long](MAX_LONG_DIGITS + 1)(i => 
math.pow(10, i).toLong)
+  val POW_10 = Array.tabulate[Long](MAX_LONG_DIGITS + 1)(i => math.pow(10, 
i).toLong)
 
 Review comment:
   `POW_10` is need in the wrapper of `FastDateFormat` to support 
parsing/formatting in microsecond precision. Similar changes were made in Spark 
2.4.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
SparkQA commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and 
`FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584510150
 
 
   **[Test build #118215 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118215/testReport)**
 for PR 27524 at commit 
[`93f3ae1`](https://github.com/apache/spark/commit/93f3ae1c32f893cc3cc22ae075753098440e76b5).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
SparkQA commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw 
exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584510148
 
 
   **[Test build #118216 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118216/testReport)**
 for PR 27488 at commit 
[`549cdf4`](https://github.com/apache/spark/commit/549cdf4d1d22f34091439cc47f486dd76e2a0de8).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] Ngone51 commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
Ngone51 commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw 
exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584509861
 
 
   Jenkins, retest this please.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] MaxGekk commented on a change in pull request #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
MaxGekk commented on a change in pull request #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#discussion_r377476654
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/datetimeExpressions.scala
 ##
 @@ -831,12 +831,11 @@ abstract class ToTimestamp
 }
   case StringType =>
 val zid = ctx.addReferenceObj("zoneId", zoneId, 
classOf[ZoneId].getName)
-val locale = ctx.addReferenceObj("locale", Locale.US)
 val tf = TimestampFormatter.getClass.getName.stripSuffix("$")
 nullSafeCodeGen(ctx, ev, (string, format) => {
   s"""
 try {
-  ${ev.value} = $tf$$.MODULE$$.apply($format.toString(), $zid, 
$locale)
+  ${ev.value} = 
$tf$$.MODULE$$.withStrongLegacy($format.toString(), $zid)
 
 Review comment:
   I removed `withStrongLegacy` by enum


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] MaxGekk commented on a change in pull request #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
MaxGekk commented on a change in pull request #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#discussion_r377476826
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/util/TimestampFormatter.scala
 ##
 @@ -90,47 +91,168 @@ class FractionTimestampFormatter(zoneId: ZoneId)
   override protected lazy val formatter = 
DateTimeFormatterHelper.fractionFormatter
 }
 
-class LegacyTimestampFormatter(
+/**
+ * The custom sub-class of `GregorianCalendar` is needed to get access to
+ * protected `fields` immediately after parsing. We cannot use
+ * the `get()` method because it performs normalization of the fraction
+ * part. Accordingly, the `MILLISECOND` field doesn't contain original value.
+ *
+ * Also this class allows to set raw value to the `MILLISECOND` field
+ * directly before formatting.
+ */
+class MicrosCalendar(tz: TimeZone, digitsInFraction: Int)
+  extends GregorianCalendar(tz, Locale.US) {
+  // Converts parsed `MILLISECOND` field to seconds fraction in microsecond 
precision.
+  // For example if the fraction pattern is `` then `digitsInFraction` = 
4, and
+  // if the `MILLISECOND` field was parsed to `1234`.
+  def getMicros(): SQLTimestamp = {
+// Append 6 zeros to the field: 1234 -> 123400
+val d = fields(Calendar.MILLISECOND) * MICROS_PER_SECOND
+// Take the first 6 digits from `d`: 123400 -> 123400
+// The rest contains exactly `digitsInFraction`: `` = 10 ^ 
digitsInFraction
+// So, the result is `(1234 * 100) / (10 ^ digitsInFraction)
+d / Decimal.POW_10(digitsInFraction)
+  }
+
+  // Converts the seconds fraction in microsecond precision to a value
+  // that can be correctly formatted according to the specified fraction 
pattern.
+  // The method performs operations opposite to `getMicros()`.
+  def setMicros(micros: Long): Unit = {
+val d = micros * Decimal.POW_10(digitsInFraction)
+fields(Calendar.MILLISECOND) = (d / MICROS_PER_SECOND).toInt
+  }
+}
+
+/**
+ * An instance of the class is aimed to re-use many times. It contains helper 
objects
+ * `cal` which is reused between `parse()` and `format` invokes.
+ */
+class LegacyFastDateFormat(fastDateFormat: FastDateFormat) {
 
 Review comment:
   I removed the class


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] Ngone51 commented on issue #22163: [SPARK-25166][CORE]Reduce the number of write operations for shuffle write.

2020-02-10 Thread GitBox
Ngone51 commented on issue #22163: [SPARK-25166][CORE]Reduce the number of 
write operations for shuffle write.
URL: https://github.com/apache/spark/pull/22163#issuecomment-584509149
 
 
   After taking another detail look on this, I feel that this change may not 
bring expected performance improvement and  is unnecessary.
   
   Before this PR, we'll only copy one record from `recordPage` to 
`writeBuffer` (even if there's remaining free space for following records) at 
each time  and call `DiskBlockObjectWriter.write()` after copy.  And this PR 
changes it to copy multiple records at each time until there's no free space in 
`writeBuffer`. Then, call `DiskBlockObjectWriter.write()` and write multiple 
records in batch.
   
   So it looks like that this PR tries to reduce the invocation on 
`DiskBlockObjectWriter.write()`  and expectedly to reduce I/O operations(I 
guess). But please note that, `DiskBlockObjectWriter` itself has already backed 
by a buffer(which is more bigger than `writeBuffer`) in its 
`BufferedOutputStream`. So, it's unnecessary for us to bring the duplicate work 
upon `DiskBlockObjectWriter`.
   
   Any thoughts? @10110346 @kiszk @cloud-fan @maropu 
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
SparkQA commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait 
time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584507576
 
 
   **[Test build #118214 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118214/testReport)**
 for PR 27207 at commit 
[`e39680b`](https://github.com/apache/spark/commit/e39680b8cc6fbc01ed9094c998deed9904e2f3f8).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506097
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118213/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
SparkQA commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and 
`FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506081
 
 
   **[Test build #118213 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118213/testReport)**
 for PR 27524 at commit 
[`ddf127d`](https://github.com/apache/spark/commit/ddf127dd148c445d7f8910af1c3aef9f3976d075).
* This patch **fails Scala style tests**.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality 
wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584506052
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22974/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` 
and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506048
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22973/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506088
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506048
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22973/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27207: [WIP][SPARK-18886][CORE] Make Locality 
wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584506042
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make 
Locality wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584506042
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` 
and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506037
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make Locality wait time measure resource under utilization due to delay scheduling.

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27207: [WIP][SPARK-18886][CORE] Make 
Locality wait time measure resource under utilization due to delay scheduling.
URL: https://github.com/apache/spark/pull/27207#issuecomment-584506052
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22974/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` 
and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506097
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118213/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` 
and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506088
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584505701
 
 
   **[Test build #118213 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118213/testReport)**
 for PR 27524 at commit 
[`ddf127d`](https://github.com/apache/spark/commit/ddf127dd148c445d7f8910af1c3aef9f3976d075).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584506037
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
SparkQA commented on issue #27524: [WIP][SQL] Support `SimpleDateFormat` and 
`FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#issuecomment-584505701
 
 
   **[Test build #118213 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118213/testReport)**
 for PR 27524 at commit 
[`ddf127d`](https://github.com/apache/spark/commit/ddf127dd148c445d7f8910af1c3aef9f3976d075).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27536: [SPARK-30784] Use ORC nohive

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27536: [SPARK-30784] Use ORC nohive 
URL: https://github.com/apache/spark/pull/27536#issuecomment-584504079
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118207/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27536: [SPARK-30784] Use ORC nohive

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27536: [SPARK-30784] Use ORC nohive 
URL: https://github.com/apache/spark/pull/27536#issuecomment-584504074
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27536: [SPARK-30784] Use ORC nohive

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27536: [SPARK-30784] Use ORC nohive 
URL: https://github.com/apache/spark/pull/27536#issuecomment-584504079
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118207/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27536: [SPARK-30784] Use ORC nohive

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27536: [SPARK-30784] Use ORC nohive 
URL: https://github.com/apache/spark/pull/27536#issuecomment-584504074
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27536: [SPARK-30784] Use ORC nohive

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27536: [SPARK-30784] Use ORC nohive 
URL: https://github.com/apache/spark/pull/27536#issuecomment-584480192
 
 
   **[Test build #118207 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118207/testReport)**
 for PR 27536 at commit 
[`26e8bcf`](https://github.com/apache/spark/commit/26e8bcffecfeab82cdca55549195dd0a5b685b18).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27536: [SPARK-30784] Use ORC nohive

2020-02-10 Thread GitBox
SparkQA commented on issue #27536: [SPARK-30784] Use ORC nohive 
URL: https://github.com/apache/spark/pull/27536#issuecomment-584503878
 
 
   **[Test build #118207 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118207/testReport)**
 for PR 27536 at commit 
[`26e8bcf`](https://github.com/apache/spark/commit/26e8bcffecfeab82cdca55549195dd0a5b685b18).
* This patch **fails Spark unit tests**.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27533: [SPARK-30783] Exclude hive-service-rpc

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27533: [SPARK-30783] Exclude 
hive-service-rpc
URL: https://github.com/apache/spark/pull/27533#issuecomment-584503094
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27533: [SPARK-30783] Exclude hive-service-rpc

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27533: [SPARK-30783] Exclude hive-service-rpc
URL: https://github.com/apache/spark/pull/27533#issuecomment-584503094
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27533: [SPARK-30783] Exclude hive-service-rpc

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27533: [SPARK-30783] Exclude 
hive-service-rpc
URL: https://github.com/apache/spark/pull/27533#issuecomment-584503096
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118201/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27533: [SPARK-30783] Exclude hive-service-rpc

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27533: [SPARK-30783] Exclude hive-service-rpc
URL: https://github.com/apache/spark/pull/27533#issuecomment-584503096
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118201/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27533: [SPARK-30783] Exclude hive-service-rpc

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27533: [SPARK-30783] Exclude 
hive-service-rpc
URL: https://github.com/apache/spark/pull/27533#issuecomment-584469315
 
 
   **[Test build #118201 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118201/testReport)**
 for PR 27533 at commit 
[`db3a35f`](https://github.com/apache/spark/commit/db3a35fc61be1c8f057470eb8909ed88c9ed9f56).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27533: [SPARK-30783] Exclude hive-service-rpc

2020-02-10 Thread GitBox
SparkQA commented on issue #27533: [SPARK-30783] Exclude hive-service-rpc
URL: https://github.com/apache/spark/pull/27533#issuecomment-584502618
 
 
   **[Test build #118201 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118201/testReport)**
 for PR 27533 at commit 
[`db3a35f`](https://github.com/apache/spark/commit/db3a35fc61be1c8f057470eb8909ed88c9ed9f56).
* This patch passes all tests.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27513: [SPARK-30756][SQL] Fix `ThriftServerWithSparkContextSuite` on spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27513: [SPARK-30756][SQL] Fix 
`ThriftServerWithSparkContextSuite` on 
spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3
URL: https://github.com/apache/spark/pull/27513#issuecomment-584499078
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27513: [SPARK-30756][SQL] Fix `ThriftServerWithSparkContextSuite` on spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27513: [SPARK-30756][SQL] Fix 
`ThriftServerWithSparkContextSuite` on 
spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3
URL: https://github.com/apache/spark/pull/27513#issuecomment-584499082
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118199/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] HyukjinKwon commented on issue #27513: [SPARK-30756][SQL] Fix `ThriftServerWithSparkContextSuite` on spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3

2020-02-10 Thread GitBox
HyukjinKwon commented on issue #27513: [SPARK-30756][SQL] Fix 
`ThriftServerWithSparkContextSuite` on 
spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3
URL: https://github.com/apache/spark/pull/27513#issuecomment-584498945
 
 
   Merged to master and branch-3.0.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27513: [SPARK-30756][SQL] Fix `ThriftServerWithSparkContextSuite` on spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27513: [SPARK-30756][SQL] Fix 
`ThriftServerWithSparkContextSuite` on 
spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3
URL: https://github.com/apache/spark/pull/27513#issuecomment-584499078
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] HyukjinKwon closed pull request #27513: [SPARK-30756][SQL] Fix `ThriftServerWithSparkContextSuite` on spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3

2020-02-10 Thread GitBox
HyukjinKwon closed pull request #27513: [SPARK-30756][SQL] Fix 
`ThriftServerWithSparkContextSuite` on 
spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3
URL: https://github.com/apache/spark/pull/27513
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27513: [SPARK-30756][SQL] Fix `ThriftServerWithSparkContextSuite` on spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27513: [SPARK-30756][SQL] Fix 
`ThriftServerWithSparkContextSuite` on 
spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3
URL: https://github.com/apache/spark/pull/27513#issuecomment-584499082
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118199/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27521: [SPARK-29462][SQL] The data type of "array()" should be array

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27521: [SPARK-29462][SQL] The data 
type of "array()" should be array
URL: https://github.com/apache/spark/pull/27521#issuecomment-584498623
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118195/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27513: [SPARK-30756][SQL] Fix `ThriftServerWithSparkContextSuite` on spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27513: [SPARK-30756][SQL] Fix 
`ThriftServerWithSparkContextSuite` on 
spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3
URL: https://github.com/apache/spark/pull/27513#issuecomment-584462745
 
 
   **[Test build #118199 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118199/testReport)**
 for PR 27513 at commit 
[`ca0fbc5`](https://github.com/apache/spark/commit/ca0fbc57f61a3ab0b52155427dfaff96b7cb48a4).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27521: [SPARK-29462][SQL] The data type of "array()" should be array

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27521: [SPARK-29462][SQL] The data 
type of "array()" should be array
URL: https://github.com/apache/spark/pull/27521#issuecomment-584498620
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27513: [SPARK-30756][SQL] Fix `ThriftServerWithSparkContextSuite` on spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3

2020-02-10 Thread GitBox
SparkQA commented on issue #27513: [SPARK-30756][SQL] Fix 
`ThriftServerWithSparkContextSuite` on 
spark-branch-3.0-test-sbt-hadoop-2.7-hive-2.3
URL: https://github.com/apache/spark/pull/27513#issuecomment-584498608
 
 
   **[Test build #118199 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118199/testReport)**
 for PR 27513 at commit 
[`ca0fbc5`](https://github.com/apache/spark/commit/ca0fbc57f61a3ab0b52155427dfaff96b7cb48a4).
* This patch passes all tests.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27521: [SPARK-29462][SQL] The data type of "array()" should be array

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27521: [SPARK-29462][SQL] The data type of 
"array()" should be array
URL: https://github.com/apache/spark/pull/27521#issuecomment-584498620
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27521: [SPARK-29462][SQL] The data type of "array()" should be array

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27521: [SPARK-29462][SQL] The data type of 
"array()" should be array
URL: https://github.com/apache/spark/pull/27521#issuecomment-584498623
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118195/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27521: [SPARK-29462][SQL] The data type of "array()" should be array

2020-02-10 Thread GitBox
SparkQA commented on issue #27521: [SPARK-29462][SQL] The data type of 
"array()" should be array
URL: https://github.com/apache/spark/pull/27521#issuecomment-584498192
 
 
   **[Test build #118195 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118195/testReport)**
 for PR 27521 at commit 
[`90b4660`](https://github.com/apache/spark/commit/90b46609be928eef436d9ac09a7e7c2bafd954c5).
* This patch passes all tests.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27521: [SPARK-29462][SQL] The data type of "array()" should be array

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27521: [SPARK-29462][SQL] The data type of 
"array()" should be array
URL: https://github.com/apache/spark/pull/27521#issuecomment-584448861
 
 
   **[Test build #118195 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118195/testReport)**
 for PR 27521 at commit 
[`90b4660`](https://github.com/apache/spark/commit/90b46609be928eef436d9ac09a7e7c2bafd954c5).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] viirya commented on a change in pull request #27499: [SPARK-30590][SQL] Untyped select API cannot take typed column expression

2020-02-10 Thread GitBox
viirya commented on a change in pull request #27499: [SPARK-30590][SQL] Untyped 
select API cannot take typed column expression
URL: https://github.com/apache/spark/pull/27499#discussion_r377464564
 
 

 ##
 File path: sql/core/src/main/scala/org/apache/spark/sql/Dataset.scala
 ##
 @@ -1430,6 +1430,11 @@ class Dataset[T] private[sql](
*/
   @scala.annotation.varargs
   def select(cols: Column*): DataFrame = withPlan {
 
 Review comment:
   Yea, I think so if I do not miss anything.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27488: 
[SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by 
default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496902
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118212/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] Raise exception instead of silent change for new TimestampFormatter

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27537: 
[WIP][SPARK-30668][SQL][FOLLOWUP] Raise exception instead of silent change for 
new TimestampFormatter
URL: https://github.com/apache/spark/pull/27537#issuecomment-584496932
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118205/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] MaxGekk commented on a change in pull request #27524: [WIP][SQL] Support `SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters

2020-02-10 Thread GitBox
MaxGekk commented on a change in pull request #27524: [WIP][SQL] Support 
`SimpleDateFormat` and `FastDateFormat` as legacy date/timestamp formatters
URL: https://github.com/apache/spark/pull/27524#discussion_r377463939
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/datetimeExpressions.scala
 ##
 @@ -831,12 +831,11 @@ abstract class ToTimestamp
 }
   case StringType =>
 val zid = ctx.addReferenceObj("zoneId", zoneId, 
classOf[ZoneId].getName)
-val locale = ctx.addReferenceObj("locale", Locale.US)
 val tf = TimestampFormatter.getClass.getName.stripSuffix("$")
 nullSafeCodeGen(ctx, ev, (string, format) => {
   s"""
 try {
-  ${ev.value} = $tf$$.MODULE$$.apply($format.toString(), $zid, 
$locale)
+  ${ev.value} = 
$tf$$.MODULE$$.withStrongLegacy($format.toString(), $zid)
 
 Review comment:
   >  is it because SIMPLE_DATE_FORMAT is an enum, and tricky for the codegen 
part to reference?
   
   Yes, let me figure out how to use Scala enum from Java


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496902
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118212/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] Raise exception instead of silent change for new TimestampFormatter

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] 
Raise exception instead of silent change for new TimestampFormatter
URL: https://github.com/apache/spark/pull/27537#issuecomment-584496926
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584495806
 
 
   **[Test build #118212 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118212/testReport)**
 for PR 27488 at commit 
[`549cdf4`](https://github.com/apache/spark/commit/549cdf4d1d22f34091439cc47f486dd76e2a0de8).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
SparkQA commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw 
exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496885
 
 
   **[Test build #118212 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118212/testReport)**
 for PR 27488 at commit 
[`549cdf4`](https://github.com/apache/spark/commit/549cdf4d1d22f34091439cc47f486dd76e2a0de8).
* This patch **fails build dependency tests**.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA removed a comment on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] Raise exception instead of silent change for new TimestampFormatter

2020-02-10 Thread GitBox
SparkQA removed a comment on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] 
Raise exception instead of silent change for new TimestampFormatter
URL: https://github.com/apache/spark/pull/27537#issuecomment-584471719
 
 
   **[Test build #118205 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118205/testReport)**
 for PR 27537 at commit 
[`4679600`](https://github.com/apache/spark/commit/467960097a5ed99077575483daa6ded6292811de).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] Raise exception instead of silent change for new TimestampFormatter

2020-02-10 Thread GitBox
SparkQA commented on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] Raise 
exception instead of silent change for new TimestampFormatter
URL: https://github.com/apache/spark/pull/27537#issuecomment-584496788
 
 
   **[Test build #118205 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118205/testReport)**
 for PR 27537 at commit 
[`4679600`](https://github.com/apache/spark/commit/467960097a5ed99077575483daa6ded6292811de).
* This patch **fails Spark unit tests**.
* This patch merges cleanly.
* This patch adds no public classes.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] Raise exception instead of silent change for new TimestampFormatter

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] 
Raise exception instead of silent change for new TimestampFormatter
URL: https://github.com/apache/spark/pull/27537#issuecomment-584496932
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118205/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27537: [WIP][SPARK-30668][SQL][FOLLOWUP] Raise exception instead of silent change for new TimestampFormatter

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27537: 
[WIP][SPARK-30668][SQL][FOLLOWUP] Raise exception instead of silent change for 
new TimestampFormatter
URL: https://github.com/apache/spark/pull/27537#issuecomment-584496926
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27488: 
[SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by 
default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496893
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496893
 
 
   Merged build finished. Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496096
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27488: 
[SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by 
default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496096
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27488: 
[SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by 
default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496101
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22972/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] 
Throw exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584496101
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   
https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22972/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27533: [SPARK-30783] Exclude hive-service-rpc

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27533: [SPARK-30783] Exclude 
hive-service-rpc
URL: https://github.com/apache/spark/pull/27533#issuecomment-58449
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118204/
   Test FAILed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27535: [MINOR][DOC] Add class document for PruneFileSourcePartitions and PruneHiveTablePartitions

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27535: [MINOR][DOC] Add class 
document for PruneFileSourcePartitions and PruneHiveTablePartitions
URL: https://github.com/apache/spark/pull/27535#issuecomment-584495646
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins removed a comment on issue #27535: [MINOR][DOC] Add class document for PruneFileSourcePartitions and PruneHiveTablePartitions

2020-02-10 Thread GitBox
AmplabJenkins removed a comment on issue #27535: [MINOR][DOC] Add class 
document for PruneFileSourcePartitions and PruneHiveTablePartitions
URL: https://github.com/apache/spark/pull/27535#issuecomment-584495650
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118194/
   Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] SparkQA commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw exception when use untyped UDF by default

2020-02-10 Thread GitBox
SparkQA commented on issue #27488: [SPARK-26580][SQL][ML][FOLLOW-UP] Throw 
exception when use untyped UDF by default
URL: https://github.com/apache/spark/pull/27488#issuecomment-584495806
 
 
   **[Test build #118212 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118212/testReport)**
 for PR 27488 at commit 
[`549cdf4`](https://github.com/apache/spark/commit/549cdf4d1d22f34091439cc47f486dd76e2a0de8).


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



[GitHub] [spark] AmplabJenkins commented on issue #27535: [MINOR][DOC] Add class document for PruneFileSourcePartitions and PruneHiveTablePartitions

2020-02-10 Thread GitBox
AmplabJenkins commented on issue #27535: [MINOR][DOC] Add class document for 
PruneFileSourcePartitions and PruneHiveTablePartitions
URL: https://github.com/apache/spark/pull/27535#issuecomment-584495646
 
 
   Merged build finished. Test PASSed.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

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



  1   2   3   4   5   6   7   8   9   10   >