[GitHub] spark pull request: [SPARK-8397][SQL] Allow custom configuration f...

2015-06-17 Thread asfgit
Github user asfgit closed the pull request at:

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


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

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



[GitHub] spark pull request: [SPARK-8397][SQL] Allow custom configuration f...

2015-06-17 Thread marmbrus
Github user marmbrus commented on the pull request:

https://github.com/apache/spark/pull/6844#issuecomment-112969894
  
Thanks, merged 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 wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



[GitHub] spark pull request: [SPARK-8397][SQL] Allow custom configuration f...

2015-06-16 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request:

https://github.com/apache/spark/pull/6844#issuecomment-112495862
  
Merged build finished. Test PASSed.


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

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



[GitHub] spark pull request: [SPARK-8397][SQL] Allow custom configuration f...

2015-06-16 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/6844#issuecomment-112495826
  
  [Test build #34988 has 
finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/34988/console)
 for   PR 6844 at commit 
[`97ef394`](https://github.com/apache/spark/commit/97ef3945125846fde05963b84fc920ec01d6c8fa).
 * This patch **passes all tests**.
 * This patch merges cleanly.
 * This patch adds the following public classes _(experimental)_:
  * `case class IsNull(child: Expression) extends UnaryExpression with 
Predicate `
  * `case class IsNotNull(child: Expression) extends UnaryExpression with 
Predicate `



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

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



[GitHub] spark pull request: [SPARK-8397][SQL] Allow custom configuration f...

2015-06-16 Thread SparkQA
Github user SparkQA commented on the pull request:

https://github.com/apache/spark/pull/6844#issuecomment-112464983
  
  [Test build #34988 has 
started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/34988/consoleFull)
 for   PR 6844 at commit 
[`97ef394`](https://github.com/apache/spark/commit/97ef3945125846fde05963b84fc920ec01d6c8fa).


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

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



[GitHub] spark pull request: [SPARK-8397][SQL] Allow custom configuration f...

2015-06-16 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request:

https://github.com/apache/spark/pull/6844#issuecomment-112463871
  
Merged build started.


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

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



[GitHub] spark pull request: [SPARK-8397][SQL] Allow custom configuration f...

2015-06-16 Thread AmplabJenkins
Github user AmplabJenkins commented on the pull request:

https://github.com/apache/spark/pull/6844#issuecomment-112463817
  
 Merged build triggered.


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

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



[GitHub] spark pull request: [SPARK-8397][SQL] Allow custom configuration f...

2015-06-16 Thread punya
GitHub user punya opened a pull request:

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

[SPARK-8397][SQL] Allow custom configuration for TestHive

We encourage people to use TestHive in unit tests, because it's
impossible to create more than one HiveContext within one process. The
current implementation locks people into using a local[2] SparkContext
underlying their HiveContext.  We should make it possible to override
this using a system property so that people can test against
local-cluster or remote spark clusters to make their tests more
realistic.

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

$ git pull https://github.com/punya/spark feature/SPARK-8397

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

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

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

This closes #6844


commit 97ef3945125846fde05963b84fc920ec01d6c8fa
Author: Punya Biswal 
Date:   2015-06-16T14:57:14Z

[SPARK-8397][SQL] Allow custom configuration for TestHive

We encourage people to use TestHive in unit tests, because it's
impossible to create more than one HiveContext within one process. The
current implementation locks people into using a local[2] SparkContext
underlying their HiveContext.  We should make it possible to override
this using a system property so that people can test against
local-cluster or remote spark clusters to make their tests more
realistic.




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

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