Uh oh!
There was an error while loading. Please reload this page.
[SPARK-2283][SQL] Reset test environment before running PruningSuite - #1221
Closed
liancheng wants to merge 1 commit into
Closed
[SPARK-2283][SQL] Reset test environment before running PruningSuite#1221liancheng wants to merge 1 commit into
liancheng wants to merge 1 commit into
Conversation
AmplabJenkins
commented
Jun 25, 2014
Merged build triggered. |
AmplabJenkins
commented
Jun 25, 2014
Merged build started. |
marmbrus
commented
Jun 25, 2014
Contributor
Add SQL to the title please |
liancheng
commented
Jun 26, 2014
ContributorAuthor
@marmbrus Done |
AmplabJenkins
commented
Jun 26, 2014
Merged build finished. All automated tests passed. |
AmplabJenkins
commented
Jun 26, 2014
All automated tests passed. |
marmbrus
commented
Jun 26, 2014
Contributor
Thanks, merged into master and 1.0 |
asfgit pushed a commit
that referenced
this pull request
Jun 26, 2014
JIRA issue: [SPARK-2283](https://issues.apache.org/jira/browse/SPARK-2283) If `PruningSuite` is run right after `HiveCompatibilitySuite`, the first test case fails because `srcpart` table is cached in-memory by `HiveCompatibilitySuite`, but column pruning is not implemented for `InMemoryColumnarTableScan` operator yet. Author: Cheng Lian <lian.cs.zju@gmail.com> Closes#1221 from liancheng/spark-2283 and squashes the following commits: dc0b663 [Cheng Lian] SPARK-2283: reset test environment before running PruningSuite (cherry picked from commit 7f196b0) Signed-off-by: Michael Armbrust <michael@databricks.com>
xiliu82 pushed a commit
to xiliu82/spark
that referenced
this pull request
Sep 4, 2014
JIRA issue: [SPARK-2283](https://issues.apache.org/jira/browse/SPARK-2283) If `PruningSuite` is run right after `HiveCompatibilitySuite`, the first test case fails because `srcpart` table is cached in-memory by `HiveCompatibilitySuite`, but column pruning is not implemented for `InMemoryColumnarTableScan` operator yet. Author: Cheng Lian <lian.cs.zju@gmail.com> Closesapache#1221 from liancheng/spark-2283 and squashes the following commits: dc0b663 [Cheng Lian] SPARK-2283: reset test environment before running PruningSuite
wangyum pushed a commit
that referenced
this pull request
May 26, 2023
…gatingCatalog (#1221) * [CARMEL-6531] Fail to instantiate the custom v2 session catalog: DelegatingCatalog Cherry-pick from: https://github.corp.ebay.com/hadoop/spark-longwing3/pull/194https://github.corp.ebay.com/hadoop/spark-longwing3/pull/203 * Fix ut
mapr-devops pushed a commit
to mapr/spark
that referenced
this pull request
May 8, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
JIRA issue: SPARK-2283
If
PruningSuiteis run right afterHiveCompatibilitySuite, the first test case fails becausesrcparttable is cached in-memory byHiveCompatibilitySuite, but column pruning is not implemented forInMemoryColumnarTableScanoperator yet.