Github user rxin commented on a diff in the pull request:

    https://github.com/apache/spark/pull/7892#discussion_r36060977
  
    --- Diff: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/codegen/GenerateUnsafeRowJoinerBitsetSuite.scala
 ---
    @@ -91,8 +92,9 @@ class GenerateUnsafeRowJoinerBitsetSuite extends 
SparkFunSuite {
       private def createUnsafeRow(numFields: Int): UnsafeRow = {
         val row = new UnsafeRow
         val sizeInBytes = numFields * 8 + ((numFields + 63) / 64) * 8
    -    val buf = new Array[Byte](sizeInBytes)
    -    row.pointTo(buf, numFields, sizeInBytes)
    +    val offset = numFields * 8
    --- End diff --
    
    this is added to explicitly test adding some offset right?
    
    if that's the case, why make it numFields * 8?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to