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

Reynold Xin resolved SPARK-9358.
--------------------------------
       Resolution: Fixed
    Fix Version/s: 1.5.0

> GenerateUnsafeRowJoiner
> -----------------------
>
>                 Key: SPARK-9358
>                 URL: https://issues.apache.org/jira/browse/SPARK-9358
>             Project: Spark
>          Issue Type: Sub-task
>          Components: SQL
>            Reporter: Reynold Xin
>            Assignee: Reynold Xin
>             Fix For: 1.5.0
>
>
> A class that can be used to concatenate UnsafeRows together.
> {code}
> class UnsafeRowConcat(leftSchema: StructType, rightSchema: StructType) {
>   def concat(left: UnsafeRow, right: UnsafeRow): UnsafeRow = {
>     // ...
>   }
> }
> {code}
> concat should reuse the same buffer space, to avoid constant allocation.
> UnsafeRow has 3 parts: bitset, fixed-length portion, and variable length 
> portion.
> We need to concat the bitsets, the fixed-length portions, append the variable 
> length portions,
> and then update the fields with variable length portion to change the new 
> offsets.



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

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to