Uh oh!
There was an error while loading. Please reload this page.
[SPARK-1913][SQL] Bug fix: column pruning error in Parquet support - #863
[SPARK-1913][SQL] Bug fix: column pruning error in Parquet support#863liancheng wants to merge 3 commits into
Conversation
…uld remain in ParquetTableScan operator
AmplabJenkins
commented
May 23, 2014
Merged build triggered. |
AmplabJenkins
commented
May 23, 2014
Merged build started. |
AmplabJenkins
commented
May 23, 2014
Merged build finished. All automated tests passed. |
AmplabJenkins
commented
May 23, 2014
All automated tests passed. |
liancheng
commented
May 23, 2014
There was a problem hiding this comment.
I find this slightly hard to understand because prunePushedDownFilter is an option. Can we write this out as a full closure?
There was a problem hiding this comment.
Removed the Option, now it should be clear :)
AmplabJenkins
commented
May 24, 2014
Merged build triggered. |
AmplabJenkins
commented
May 24, 2014
Merged build started. |
AmplabJenkins
commented
May 24, 2014
Merged build finished. All automated tests passed. |
AmplabJenkins
commented
May 24, 2014
All automated tests passed. |
rxin
commented
May 25, 2014
Thanks. I've merged this. |
#511 and #863 got left out of branch-1.0 since we were really close to the release. Now that they have been tested a little I see no reason to leave them out. Author: Michael Armbrust <michael@databricks.com> Author: witgo <witgo@qq.com> Closes#1078 from marmbrus/branch-1.0 and squashes the following commits: 22be674 [witgo] [SPARK-1841]: update scalatest to version 2.1.5 fc8fc79 [Michael Armbrust] Include #1071 as well. c5d0adf [Michael Armbrust] Update SparkSQL in branch-1.0 to match master.
JIRA issue: [SPARK-1913](https://issues.apache.org/jira/browse/SPARK-1913) When scanning Parquet tables, attributes referenced only in predicates that are pushed down are not passed to the `ParquetTableScan` operator and causes exception. Author: Cheng Lian <lian.cs.zju@gmail.com> Closesapache#863 from liancheng/spark-1913 and squashes the following commits: f976b73 [Cheng Lian] Addessed the readability issue commented by @rxinf5b257d [Cheng Lian] Added back comments deleted by mistake ae60ab3 [Cheng Lian] [SPARK-1913] Attributes referenced only in predicates pushed down should remain in ParquetTableScan operator
JIRA issue: SPARK-1913
When scanning Parquet tables, attributes referenced only in predicates that are pushed down are not passed to the
ParquetTableScanoperator and causes exception.