[GitHub] spark issue #18133: [Minor] Fix some indent issues.

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18133 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77477/ Test PASSed. ---

[GitHub] spark issue #18133: [Minor] Fix some indent issues.

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18133 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #18133: [Minor] Fix some indent issues.

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18133 **[Test build #77477 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77477/testReport)** for PR 18133 at commit

[GitHub] spark issue #18132: [SPARK-8184][SQL] Add additional function description fo...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18132 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #18132: [SPARK-8184][SQL] Add additional function description fo...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18132 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77476/ Test PASSed. ---

[GitHub] spark issue #18132: [SPARK-8184][SQL] Add additional function description fo...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18132 **[Test build #77476 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77476/testReport)** for PR 18132 at commit

[GitHub] spark issue #18135: [SPARK-20907][test] Use testQuietly for test suites that...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18135 **[Test build #77480 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77480/testReport)** for PR 18135 at commit

[GitHub] spark pull request #18135: [SPARK-20907][test] Use testQuietly for test suit...

2017-05-27 Thread kiszk
GitHub user kiszk opened a pull request: https://github.com/apache/spark/pull/18135 [SPARK-20907][test] Use testQuietly for test suites that generate long log output ## What changes were proposed in this pull request? Supress console output by using `testQuietly` in test

[GitHub] spark issue #18046: [SPARK-20749][SQL] Built-in SQL Function Support - all v...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18046 **[Test build #77479 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77479/testReport)** for PR 18046 at commit

[GitHub] spark issue #18079: [SPARK-20841][SQL] Support column aliases for catalog ta...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on the issue: https://github.com/apache/spark/pull/18079 Yeah. That should be a negative case. The `FROM clause` should be resolved before `SELECT clause`. The PR title is not accurate. I think we should keep the original JIRA name. `Support

[GitHub] spark issue #18134: [SPARK-20909][SQL] Add build-int SQL function - DAYOFWEE...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18134 **[Test build #77478 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77478/testReport)** for PR 18134 at commit

[GitHub] spark pull request #18134: [SPARK-20909][SQL] Add build-int SQL function - D...

2017-05-27 Thread wangyum
GitHub user wangyum opened a pull request: https://github.com/apache/spark/pull/18134 [SPARK-20909][SQL] Add build-int SQL function - DAYOFWEEK ## What changes were proposed in this pull request? Add build-int SQL function - DAYOFWEEK ## How was this patch tested?

[GitHub] spark pull request #18131: [SPARK-20908] [SQL] Cache Manager: Hint should be...

2017-05-27 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/spark/pull/18131 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[GitHub] spark pull request #18086: [SPARK-20854][SQL] Extend hint syntax to support ...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/18086#discussion_r118832568 --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/hints.scala --- @@ -25,7 +25,7 @@ import

[GitHub] spark pull request #18086: [SPARK-20854][SQL] Extend hint syntax to support ...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/18086#discussion_r118832533 --- Diff: sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/parser/PlanParserSuite.scala --- @@ -518,47 +518,97 @@ class PlanParserSuite

[GitHub] spark pull request #18086: [SPARK-20854][SQL] Extend hint syntax to support ...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/18086#discussion_r118832527 --- Diff: sql/core/src/test/scala/org/apache/spark/sql/DataFrameHintSuite.scala --- @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software

[GitHub] spark pull request #18086: [SPARK-20854][SQL] Extend hint syntax to support ...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/18086#discussion_r118832466 --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/ResolveHints.scala --- @@ -91,7 +92,12 @@ object ResolveHints {

[GitHub] spark pull request #18086: [SPARK-20854][SQL] Extend hint syntax to support ...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/18086#discussion_r118832456 --- Diff: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/hints.scala --- @@ -25,7 +25,7 @@ import

[GitHub] spark pull request #18086: [SPARK-20854][SQL] Extend hint syntax to support ...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/18086#discussion_r118832415 --- Diff: sql/catalyst/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBase.g4 --- @@ -381,12 +381,12 @@ querySpecification ;

[GitHub] spark issue #18133: [Minor] Fix some indent issues.

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18133 **[Test build #77477 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77477/testReport)** for PR 18133 at commit

[GitHub] spark pull request #18133: [Minor] Fix some indent issues.

2017-05-27 Thread wangyum
GitHub user wangyum opened a pull request: https://github.com/apache/spark/pull/18133 [Minor] Fix some indent issues. ## What changes were proposed in this pull request? Fix some indent issues. ## How was this patch tested? existing tests. You can merge

[GitHub] spark issue #18132: [SPARK-8184][SQL] Add additional function description fo...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18132 **[Test build #77476 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77476/testReport)** for PR 18132 at commit

[GitHub] spark pull request #18086: [SPARK-20854][SQL] Extend hint syntax to support ...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on a diff in the pull request: https://github.com/apache/spark/pull/18086#discussion_r118832143 --- Diff: sql/catalyst/src/main/antlr4/org/apache/spark/sql/catalyst/parser/SqlBase.g4 --- @@ -371,7 +371,7 @@ querySpecification

[GitHub] spark pull request #18132: [SPARK-8184][SQL] Add additional function descrip...

2017-05-27 Thread wangyum
GitHub user wangyum opened a pull request: https://github.com/apache/spark/pull/18132 [SPARK-8184][SQL] Add additional function description for weekofyear ## What changes were proposed in this pull request? Add additional function description for weekofyear. ## How

[GitHub] spark issue #18131: [SPARK-20908] [SQL] Cache Manager: Hint should be ignore...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18131 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77475/ Test PASSed. ---

[GitHub] spark issue #18131: [SPARK-20908] [SQL] Cache Manager: Hint should be ignore...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18131 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #18131: [SPARK-20908] [SQL] Cache Manager: Hint should be ignore...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18131 **[Test build #77475 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77475/testReport)** for PR 18131 at commit

[GitHub] spark issue #18131: [SPARK-20908] [SQL] Cache Manager: Hint should be ignore...

2017-05-27 Thread cloud-fan
Github user cloud-fan commented on the issue: https://github.com/apache/spark/pull/18131 LGTM --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the

[GitHub] spark issue #18131: [SPARK-20908] [SQL] Cache Manager: Hint should be ignore...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18131 **[Test build #77475 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77475/testReport)** for PR 18131 at commit

[GitHub] spark issue #18131: [SPARK-20908] [SQL] Cache Manager: Hint should be ignore...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on the issue: https://github.com/apache/spark/pull/18131 cc @cloud-fan --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so,

[GitHub] spark pull request #18131: [SPARK-20908] [SQL] Cache Manager: Hint should be...

2017-05-27 Thread gatorsmile
GitHub user gatorsmile opened a pull request: https://github.com/apache/spark/pull/18131 [SPARK-20908] [SQL] Cache Manager: Hint should be ignored in plan matching ### What changes were proposed in this pull request? In Cache manager, the plan matching should ignore Hint.

[GitHub] spark issue #18046: [SPARK-20749][SQL] Built-in SQL Function Support - all v...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on the issue: https://github.com/apache/spark/pull/18046 @kiszk Could you resolve the conflict? Thanks! --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this

[GitHub] spark issue #17738: [SPARK-20422][Spark Core] Worker registration retries sh...

2017-05-27 Thread jiangxb1987
Github user jiangxb1987 commented on the issue: https://github.com/apache/spark/pull/17738 Could you expand more on the senerio you are changing this? Thank you! --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your

[GitHub] spark pull request #18103: [SPARK-20876][SQL]If the input parameter is float...

2017-05-27 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/spark/pull/18103 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[GitHub] spark issue #18103: [SPARK-20876][SQL]If the input parameter is float type f...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on the issue: https://github.com/apache/spark/pull/18103 Could you open another PR to backport the fix to 2.2? Thanks! --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does

[GitHub] spark issue #18103: [SPARK-20876][SQL]If the input parameter is float type f...

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on the issue: https://github.com/apache/spark/pull/18103 Thanks! Merging to master. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and

[GitHub] spark pull request #17617: [SPARK-20244][Core] Handle incorrect bytesRead me...

2017-05-27 Thread jiangxb1987
Github user jiangxb1987 commented on a diff in the pull request: https://github.com/apache/spark/pull/17617#discussion_r118830572 --- Diff: core/src/test/scala/org/apache/spark/metrics/InputOutputMetricsSuite.scala --- @@ -319,6 +319,45 @@ class InputOutputMetricsSuite extends

[GitHub] spark pull request #17617: [SPARK-20244][Core] Handle incorrect bytesRead me...

2017-05-27 Thread jiangxb1987
Github user jiangxb1987 commented on a diff in the pull request: https://github.com/apache/spark/pull/17617#discussion_r118830567 --- Diff: core/src/test/scala/org/apache/spark/metrics/InputOutputMetricsSuite.scala --- @@ -319,6 +319,45 @@ class InputOutputMetricsSuite extends

[GitHub] spark pull request #18121: [SPARK-20897][SQL] cached self-join should not fa...

2017-05-27 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/spark/pull/18121 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

[GitHub] spark issue #18121: [SPARK-20897][SQL] cached self-join should not fail

2017-05-27 Thread gatorsmile
Github user gatorsmile commented on the issue: https://github.com/apache/spark/pull/18121 Thanks! Merging to master/2.2. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled

[GitHub] spark issue #18074: [DOCS][MINOR] Scaladoc fixes (aka typo hunting)

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18074 **[Test build #3766 has finished](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/3766/testReport)** for PR 18074 at commit

[GitHub] spark issue #12823: [SPARK-14985][ML] Update LinearRegression, LogisticRegre...

2017-05-27 Thread BenFradet
Github user BenFradet commented on the issue: https://github.com/apache/spark/pull/12823 @MLnick should we wait on those PRs being merged before moving forward with this? --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well.

[GitHub] spark issue #18120: [SPARK-20498][PYSPARK][ML] Expose getMaxDepth for ensemb...

2017-05-27 Thread keypointt
Github user keypointt commented on the issue: https://github.com/apache/spark/pull/18120 Oh sorry i missed it, thanks for the heads up. On Sat, May 27, 2017 at 2:16 PM Yan Facai (颜发才) wrote: > Hi, @keypointt

[GitHub] spark issue #18120: [SPARK-20498][PYSPARK][ML] Expose getMaxDepth for ensemb...

2017-05-27 Thread facaiy
Github user facaiy commented on the issue: https://github.com/apache/spark/pull/18120 Hi, @keypointt . It's the feature of Python. The doctest is both document and unit test. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as

[GitHub] spark issue #18074: [DOCS][MINOR] Scaladoc fixes (aka typo hunting)

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18074 **[Test build #3766 has started](https://amplab.cs.berkeley.edu/jenkins/job/NewSparkPullRequestBuilder/3766/testReport)** for PR 18074 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77472/ Test PASSed. ---

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77472 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77472/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77470/ Test PASSed. ---

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77470 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77470/testReport)** for PR 13706 at commit

[GitHub] spark issue #18104: [SPARK-20877][SPARKR][WIP] add timestamps to test runs

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18104 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77474/ Test PASSed. ---

[GitHub] spark issue #18104: [SPARK-20877][SPARKR][WIP] add timestamps to test runs

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18104 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #18104: [SPARK-20877][SPARKR][WIP] add timestamps to test runs

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18104 **[Test build #77474 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77474/testReport)** for PR 18104 at commit

[GitHub] spark issue #18074: [DOCS][MINOR] Scaladoc fixes (aka typo hunting)

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18074 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #18074: [DOCS][MINOR] Scaladoc fixes (aka typo hunting)

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18074 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77471/ Test FAILed. ---

[GitHub] spark issue #18074: [DOCS][MINOR] Scaladoc fixes (aka typo hunting)

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18074 **[Test build #77471 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77471/testReport)** for PR 18074 at commit

[GitHub] spark issue #18104: [SPARK-20877][SPARKR][WIP] add timestamps to test runs

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18104 **[Test build #77474 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77474/testReport)** for PR 18104 at commit

[GitHub] spark issue #17451: [SPARK-19866][ML][PySpark] Add local version of Word2Vec...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/17451 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77473/ Test FAILed. ---

[GitHub] spark issue #17451: [SPARK-19866][ML][PySpark] Add local version of Word2Vec...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/17451 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #17451: [SPARK-19866][ML][PySpark] Add local version of Word2Vec...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/17451 **[Test build #77473 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77473/testReport)** for PR 17451 at commit

[GitHub] spark pull request #18128: [SPARK-20906][SparkR]:Constrained Logistic Regres...

2017-05-27 Thread felixcheung
Github user felixcheung commented on a diff in the pull request: https://github.com/apache/spark/pull/18128#discussion_r118827649 --- Diff: R/pkg/R/mllib_classification.R --- @@ -239,21 +253,51 @@ function(object, path, overwrite = FALSE) { setMethod("spark.logit",

[GitHub] spark issue #18128: [SPARK-20906][SparkR]:Constrained Logistic Regression fo...

2017-05-27 Thread felixcheung
Github user felixcheung commented on the issue: https://github.com/apache/spark/pull/18128 @yanboliang --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77467/ Test PASSed. ---

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #18120: [SPARK-20498][PYSPARK][ML] Expose getMaxDepth for ensemb...

2017-05-27 Thread keypointt
Github user keypointt commented on the issue: https://github.com/apache/spark/pull/18120 Hi Facai, you exposed api `getMaxDepth()` in `TreeEnsembleModel`, and the rest changes are in comment and not being run. I'd suggest you put the tests in test module and run them to

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77467 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77467/testReport)** for PR 13706 at commit

[GitHub] spark issue #17451: [SPARK-19866][ML][PySpark] Add local version of Word2Vec...

2017-05-27 Thread keypointt
Github user keypointt commented on the issue: https://github.com/apache/spark/pull/17451 I add a helper function findSynonymsTuple() but in python terminal, I don't know how to access the tuple, could you please help here? thanks a lot @holdenk ``` >>> from

[GitHub] spark issue #17451: [SPARK-19866][ML][PySpark] Add local version of Word2Vec...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/17451 **[Test build #77473 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77473/testReport)** for PR 17451 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77469/ Test FAILed. ---

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77469 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77469/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77468/ Test FAILed. ---

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77468 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77468/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77472 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77472/testReport)** for PR 13706 at commit

[GitHub] spark issue #18074: [DOCS][MINOR] Scaladoc fixes (aka typo hunting)

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18074 **[Test build #77471 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77471/testReport)** for PR 18074 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77470 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77470/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77469 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77469/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77468 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77468/testReport)** for PR 13706 at commit

[GitHub] spark issue #18128: [SPARK-20906][SparkR]:Constrained Logistic Regression fo...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18128 Merged build finished. Test PASSed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #18128: [SPARK-20906][SparkR]:Constrained Logistic Regression fo...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/18128 Test PASSed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77462/ Test PASSed. ---

[GitHub] spark issue #18128: [SPARK-20906][SparkR]:Constrained Logistic Regression fo...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/18128 **[Test build #77462 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77462/testReport)** for PR 18128 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread lianhuiwang
Github user lianhuiwang commented on the issue: https://github.com/apache/spark/pull/13706 @gatorsmile sorry for reply lately. Now i have merged with master. Thanks. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77467 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77467/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77466 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77466/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77466/ Test FAILed. ---

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77465/ Test FAILed. ---

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77465 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77465/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77466 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77466/testReport)** for PR 13706 at commit

[GitHub] spark pull request #18130: [Web UI] Remove no need loop in JobProgressListen...

2017-05-27 Thread srowen
Github user srowen commented on a diff in the pull request: https://github.com/apache/spark/pull/18130#discussion_r118824449 --- Diff: core/src/main/scala/org/apache/spark/ui/jobs/JobProgressListener.scala --- @@ -202,12 +202,13 @@ class JobProgressListener(conf: SparkConf)

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77465 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77465/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77464/ Test FAILed. ---

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77464 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77464/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Merged build finished. Test FAILed. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77464 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77464/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread SparkQA
Github user SparkQA commented on the issue: https://github.com/apache/spark/pull/13706 **[Test build #77463 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/77463/testReport)** for PR 13706 at commit

[GitHub] spark issue #13706: [SPARK-15988] [SQL] Implement DDL commands: Create/Drop ...

2017-05-27 Thread AmplabJenkins
Github user AmplabJenkins commented on the issue: https://github.com/apache/spark/pull/13706 Test FAILed. Refer to this link for build results (access rights to CI server needed): https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/77463/ Test FAILed. ---

  1   2   >