You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Davies Liu (JIRA)" <ji...@apache.org> on 2015/08/01 05:25:04 UTC

[jira] [Assigned] (SPARK-9518) Clean up GenerateUnsafeRowJoiner

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

Davies Liu reassigned SPARK-9518:
---------------------------------

    Assignee: Davies Liu

> Clean up GenerateUnsafeRowJoiner
> --------------------------------
>
>                 Key: SPARK-9518
>                 URL: https://issues.apache.org/jira/browse/SPARK-9518
>             Project: Spark
>          Issue Type: Sub-task
>          Components: SQL
>            Reporter: Reynold Xin
>            Assignee: Davies Liu
>
> [~davies]'s suggestion on how to rewrite it to be more clear:
> {code}
> Seq.tabulate(outputBitsetWords) { i => 
>   val bitset = if (i< bitset1Words) {
>     getLong(obj1, i * 8)
>   } else if (i == bitset1Words && bitset1Remainder > 0) {
>     getLong(obj1, i* 8) | getLong(obj2, 0) >>> bitset1Remainder
>   } else {
>     getLong(obj2, i - bitset1Words) <<< bitset1Remainder | getLong(obj2 i - bitset1Words + 1) >>> bitset1Remainder
>   }
>   putLong(buf, i * 8, bitset)
> }
> {code}



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

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