[ 
https://issues.apache.org/jira/browse/SPARK-13255?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Davies Liu resolved SPARK-13255.
--------------------------------
       Resolution: Fixed
    Fix Version/s: 2.0.0

Issue resolved by pull request 11435
[https://github.com/apache/spark/pull/11435]

> Integrate vectorized parquet scan with whole stage codegen.
> -----------------------------------------------------------
>
>                 Key: SPARK-13255
>                 URL: https://issues.apache.org/jira/browse/SPARK-13255
>             Project: Spark
>          Issue Type: Task
>          Components: SQL
>            Reporter: Nong Li
>             Fix For: 2.0.0
>
>
> The generated whole stage codegen is intended to be run over batches of rows. 
> This task is to integrate ColumnarBatches with whole stage codegen.
> The resulting generated code should look something like:
> {code}
> Iterator<ColumnarBatch> input;
> void process() {
>   while (input.hasNext()) {
>     ColumnarBatch batch = input.next();
>     for (Row: batch) {
>       // Current function
>     }
>   }
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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

Reply via email to