[GitHub] [spark] SparkQA removed a comment on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
SparkQA removed a comment on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599240573 **[Test build #119818 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119818/testReport)** for

[GitHub] [spark] AmplabJenkins commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599248600 Merged build finished. Test FAILed. This is an automated message

[GitHub] [spark] AmplabJenkins commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599248603 Test FAILed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] SparkQA commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
SparkQA commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599248579 **[Test build #119818 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119818/testReport)** for PR

[GitHub] [spark] srowen commented on a change in pull request #27895: [SPARK-31138][ML] Add ANOVA Selector for continuous features and categorical labels

2020-03-15 Thread GitBox
srowen commented on a change in pull request #27895: [SPARK-31138][ML] Add ANOVA Selector for continuous features and categorical labels URL: https://github.com/apache/spark/pull/27895#discussion_r392700138 ## File path: mllib/src/main/scala/org/apache/spark/ml/stat/ANOVATest.scala

[GitHub] [spark] srowen commented on a change in pull request #27895: [SPARK-31138][ML] Add ANOVA Selector for continuous features and categorical labels

2020-03-15 Thread GitBox
srowen commented on a change in pull request #27895: [SPARK-31138][ML] Add ANOVA Selector for continuous features and categorical labels URL: https://github.com/apache/spark/pull/27895#discussion_r392700231 ## File path:

[GitHub] [spark] srowen commented on a change in pull request #27895: [SPARK-31138][ML] Add ANOVA Selector for continuous features and categorical labels

2020-03-15 Thread GitBox
srowen commented on a change in pull request #27895: [SPARK-31138][ML] Add ANOVA Selector for continuous features and categorical labels URL: https://github.com/apache/spark/pull/27895#discussion_r392700075 ## File path:

[GitHub] [spark] srowen commented on a change in pull request #27895: [SPARK-31138][ML] Add ANOVA Selector for continuous features and categorical labels

2020-03-15 Thread GitBox
srowen commented on a change in pull request #27895: [SPARK-31138][ML] Add ANOVA Selector for continuous features and categorical labels URL: https://github.com/apache/spark/pull/27895#discussion_r392700299 ## File path:

[GitHub] [spark] kyrill007 commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
kyrill007 commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599247542 Right, since the encoder always reads *properties*, I thought it would be too much to ask Spark guys to

[GitHub] [spark] srowen commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
srowen commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599247260 Here it's correctly marked, even. The field is never null (let's say); the bean property clearly may be null

[GitHub] [spark] kyrill007 commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
kyrill007 commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599246596 This change would mean that the _property_ should not be marked as @Nonnull. I mean, it is up to the

[GitHub] [spark] srowen commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
srowen commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599245782 @kyrill007 what about this situation: ``` @Nonnull private String foo; ... public String

[GitHub] [spark] kyrill007 commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
kyrill007 commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599245128 Hmm Not sure what you mean from _Java_ standpoint...

[GitHub] [spark] srowen commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
srowen commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599244277 I'm saying it's possible that the property is nullable but some underlying field is not, in which case, you

[GitHub] [spark] kyrill007 commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
kyrill007 commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599244118 Yeah, I'd love if Spark also looked at @Nonull *fields*. But it looks like Bean encoder looks only at

[GitHub] [spark] srowen commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
srowen commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599243876 Hm, is it possible that the field is non-null but the getter method is not? it's _possible_ but wondering if

[GitHub] [spark] srowen commented on issue #27878: [SPARK-31120][BUILD] Support enabling maven profiles for importing vi…

2020-03-15 Thread GitBox
srowen commented on issue #27878: [SPARK-31120][BUILD] Support enabling maven profiles for importing vi… URL: https://github.com/apache/spark/pull/27878#issuecomment-599241307 Merged to master This is an automated message

[GitHub] [spark] srowen closed pull request #27878: [SPARK-31120][BUILD] Support enabling maven profiles for importing vi…

2020-03-15 Thread GitBox
srowen closed pull request #27878: [SPARK-31120][BUILD] Support enabling maven profiles for importing vi… URL: https://github.com/apache/spark/pull/27878 This is an automated message from the Apache Git Service. To respond

[GitHub] [spark] AmplabJenkins commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599240713 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins removed a comment on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599240713 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins removed a comment on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599240712 Merged build finished. Test PASSed. This is an automated

[GitHub] [spark] AmplabJenkins commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599240712 Merged build finished. Test PASSed. This is an automated message

[GitHub] [spark] SparkQA commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query

2020-03-15 Thread GitBox
SparkQA commented on issue #23531: [SPARK-24497][SQL] Support recursive SQL query URL: https://github.com/apache/spark/pull/23531#issuecomment-599240573 **[Test build #119818 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119818/testReport)** for PR 23531

[GitHub] [spark] viirya commented on a change in pull request #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions

2020-03-15 Thread GitBox
viirya commented on a change in pull request #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions URL: https://github.com/apache/spark/pull/27901#discussion_r392693113 ## File path:

[GitHub] [spark] viirya commented on a change in pull request #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions

2020-03-15 Thread GitBox
viirya commented on a change in pull request #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions URL: https://github.com/apache/spark/pull/27901#discussion_r392693113 ## File path:

[GitHub] [spark] AmplabJenkins removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599234903 Merged build finished. Test PASSed. This is an automated

[GitHub] [spark] AmplabJenkins removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599234907 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599234903 Merged build finished. Test PASSed. This is an automated message from

[GitHub] [spark] AmplabJenkins commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599234907 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] SparkQA removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
SparkQA removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599204900 **[Test build #119817 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119817/testReport)** for PR

[GitHub] [spark] SparkQA commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
SparkQA commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599234669 **[Test build #119817 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119817/testReport)** for PR 27897 at

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392687466 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392686993 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392686886 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392686760 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392686760 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392686355 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392685433 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392685452 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392685340 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392685268 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392683893 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392683566 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392683488 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392683228 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392682672 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392682437 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392682075 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392682157 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392682075 ## File path:

[GitHub] [spark] SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark

2020-03-15 Thread GitBox
SaurabhChawla100 commented on a change in pull request #27636: [SPARK-30873][CORE][YARN]Handling Node Decommissioning for Yarn cluster manger in Spark URL: https://github.com/apache/spark/pull/27636#discussion_r392682007 ## File path:

[GitHub] [spark] Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#discussion_r392671951 ## File path: sql/core/src/test/resources/sql-tests/results/show-views.sql.out ## @@ -0,0 +1,211 @@ +--

[GitHub] [spark] Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#discussion_r392671512 ## File path: sql/core/src/test/resources/sql-tests/inputs/show-views.sql ## @@ -0,0 +1,28 @@ +-- Test

[GitHub] [spark] Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#discussion_r392671394 ## File path: sql/core/src/main/scala/org/apache/spark/sql/catalyst/analysis/ResolveSessionCatalog.scala

[GitHub] [spark] Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#discussion_r392671408 ## File path: sql/core/src/main/scala/org/apache/spark/sql/catalyst/analysis/ResolveSessionCatalog.scala

[GitHub] [spark] Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#discussion_r392671362 ## File path: sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/parser/DDLParserSuite.scala ##

[GitHub] [spark] Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#discussion_r392671221 ## File path: docs/sql-ref-ansi-compliance.md ## @@ -404,6 +404,7 @@ Below is a list of all the keywords

[GitHub] [spark] Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
Eric5553 commented on a change in pull request #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#discussion_r392671281 ## File path: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/InMemoryCatalog.scala ##

[GitHub] [spark] AmplabJenkins removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599205027 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599205026 Merged build finished. Test PASSed. This is an automated

[GitHub] [spark] AmplabJenkins commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599205026 Merged build finished. Test PASSed. This is an automated message from

[GitHub] [spark] AmplabJenkins commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599205027 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] SparkQA commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command

2020-03-15 Thread GitBox
SparkQA commented on issue #27897: [SPARK-31113][SQL] Add SHOW VIEWS command URL: https://github.com/apache/spark/pull/27897#issuecomment-599204900 **[Test build #119817 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119817/testReport)** for PR 27897 at

[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599198573 Merged build finished. Test PASSed.

[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599198581 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599198573 Merged build finished. Test PASSed.

[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599198581 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
SparkQA removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599177764 **[Test build #119816 has

[GitHub] [spark] SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
SparkQA commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599198396 **[Test build #119816 has

[GitHub] [spark] AmplabJenkins commented on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions URL: https://github.com/apache/spark/pull/27901#issuecomment-599197592 Merged build finished. Test PASSed.

[GitHub] [spark] AmplabJenkins removed a comment on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions URL: https://github.com/apache/spark/pull/27901#issuecomment-599197592 Merged build finished. Test PASSed.

[GitHub] [spark] AmplabJenkins removed a comment on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions URL: https://github.com/apache/spark/pull/27901#issuecomment-599197596 Test PASSed. Refer to this link for build results (access rights to CI server

[GitHub] [spark] AmplabJenkins commented on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions URL: https://github.com/apache/spark/pull/27901#issuecomment-599197596 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] SparkQA removed a comment on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions

2020-03-15 Thread GitBox
SparkQA removed a comment on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions URL: https://github.com/apache/spark/pull/27901#issuecomment-599177237 **[Test build #119813 has

[GitHub] [spark] SparkQA commented on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions

2020-03-15 Thread GitBox
SparkQA commented on issue #27901: [SPARK-31146][SQL] Leverage the helper method for aliasing in built-in SQL expressions URL: https://github.com/apache/spark/pull/27901#issuecomment-599197410 **[Test build #119813 has

[GitHub] [spark] AmplabJenkins removed a comment on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599197006 Merged build finished. Test PASSed.

[GitHub] [spark] AmplabJenkins removed a comment on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599197008 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599197006 Merged build finished. Test PASSed.

[GitHub] [spark] AmplabJenkins commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599197008 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] SparkQA commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
SparkQA commented on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599196814 **[Test build #119812 has

[GitHub] [spark] SparkQA removed a comment on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly

2020-03-15 Thread GitBox
SparkQA removed a comment on issue #27918: [SPARK-31071][SQL][Follow-up] Support nonnull annotation by field directly URL: https://github.com/apache/spark/pull/27918#issuecomment-599176712 **[Test build #119812 has

[GitHub] [spark] AmplabJenkins removed a comment on issue #27912: [SPARK-31155] Enable pydocstyle tests

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27912: [SPARK-31155] Enable pydocstyle tests URL: https://github.com/apache/spark/pull/27912#issuecomment-599190004 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins removed a comment on issue #27912: [SPARK-31155] Enable pydocstyle tests

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27912: [SPARK-31155] Enable pydocstyle tests URL: https://github.com/apache/spark/pull/27912#issuecomment-599190001 Merged build finished. Test PASSed. This is an automated message

[GitHub] [spark] AmplabJenkins commented on issue #27912: [SPARK-31155] Enable pydocstyle tests

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27912: [SPARK-31155] Enable pydocstyle tests URL: https://github.com/apache/spark/pull/27912#issuecomment-599190001 Merged build finished. Test PASSed. This is an automated message from the

[GitHub] [spark] AmplabJenkins commented on issue #27912: [SPARK-31155] Enable pydocstyle tests

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27912: [SPARK-31155] Enable pydocstyle tests URL: https://github.com/apache/spark/pull/27912#issuecomment-599190004 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] SparkQA removed a comment on issue #27912: [SPARK-31155] Enable pydocstyle tests

2020-03-15 Thread GitBox
SparkQA removed a comment on issue #27912: [SPARK-31155] Enable pydocstyle tests URL: https://github.com/apache/spark/pull/27912#issuecomment-599177762 **[Test build #119815 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119815/testReport)** for PR 27912

[GitHub] [spark] SparkQA commented on issue #27912: [SPARK-31155] Enable pydocstyle tests

2020-03-15 Thread GitBox
SparkQA commented on issue #27912: [SPARK-31155] Enable pydocstyle tests URL: https://github.com/apache/spark/pull/27912#issuecomment-599189821 **[Test build #119815 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/119815/testReport)** for PR 27912 at

[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python URL: https://github.com/apache/spark/pull/27917#issuecomment-599188952 Merged build finished. Test PASSed. This is an

[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python URL: https://github.com/apache/spark/pull/27917#issuecomment-599188952 Merged build finished. Test PASSed.

[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python URL: https://github.com/apache/spark/pull/27917#issuecomment-599188954 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python URL: https://github.com/apache/spark/pull/27917#issuecomment-599188954 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

2020-03-15 Thread GitBox
SparkQA commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python URL: https://github.com/apache/spark/pull/27917#issuecomment-599188778 **[Test build #119814 has

[GitHub] [spark] SparkQA removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

2020-03-15 Thread GitBox
SparkQA removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python URL: https://github.com/apache/spark/pull/27917#issuecomment-599177760 **[Test build #119814 has

[GitHub] [spark] AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599177863 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins removed a comment on issue #27912: [SPARK-31155] Enable pydocstyle tests

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27912: [SPARK-31155] Enable pydocstyle tests URL: https://github.com/apache/spark/pull/27912#issuecomment-599177880 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins commented on issue #27912: [SPARK-31155] Enable pydocstyle tests

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27912: [SPARK-31155] Enable pydocstyle tests URL: https://github.com/apache/spark/pull/27912#issuecomment-599177880 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

2020-03-15 Thread GitBox
AmplabJenkins commented on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python URL: https://github.com/apache/spark/pull/27917#issuecomment-599177875 Merged build finished. Test PASSed. This is an

[GitHub] [spark] AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27917: [SPARK-31153][BUILD][3.0] Cleanup several failures in lint-python URL: https://github.com/apache/spark/pull/27917#issuecomment-599177876 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599177863 Test PASSed. Refer to this link for build results (access rights to CI server needed):

[GitHub] [spark] AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable()

2020-03-15 Thread GitBox
AmplabJenkins removed a comment on issue #27908: [SPARK-31000] Add ability to set table description via Catalog.createTable() URL: https://github.com/apache/spark/pull/27908#issuecomment-599177861 Merged build finished. Test PASSed.

<    1   2   3   4   >