You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Kazuyuki Tanimura (Jira)" <ji...@apache.org> on 2021/11/08 23:26:00 UTC

[jira] [Commented] (SPARK-35867) Enable vectorized read for VectorizedPlainValuesReader.readBooleans

    [ https://issues.apache.org/jira/browse/SPARK-35867?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17440813#comment-17440813 ] 

Kazuyuki Tanimura commented on SPARK-35867:
-------------------------------------------

I am working on this

> Enable vectorized read for VectorizedPlainValuesReader.readBooleans
> -------------------------------------------------------------------
>
>                 Key: SPARK-35867
>                 URL: https://issues.apache.org/jira/browse/SPARK-35867
>             Project: Spark
>          Issue Type: Sub-task
>          Components: SQL
>    Affects Versions: 3.2.0
>            Reporter: Chao Sun
>            Priority: Minor
>
> Currently we decode PLAIN encoded booleans as follow:
> {code:java}
>   public final void readBooleans(int total, WritableColumnVector c, int rowId) {
>     // TODO: properly vectorize this
>     for (int i = 0; i < total; i++) {
>       c.putBoolean(rowId + i, readBoolean());
>     }
>   }
> {code}
> Ideally we should vectorize this.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

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