Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/13680#discussion_r69372511
  
    --- Diff: 
sql/catalyst/src/main/java/org/apache/spark/sql/catalyst/expressions/codegen/UnsafeArrayWriter.java
 ---
    @@ -33,91 +38,147 @@
       // The offset of the global buffer where we start to write this array.
       private int startingOffset;
     
    +  // The number of elements in this array
    +  private int numElements;
    +
    +  private int headerInBytes;
    +
    +  private void assertIndexIsValid(int index) {
    +    assert index >= 0 : "index (" + index + ") should >= 0";
    +    assert index < numElements : "index (" + index + ") should < " + 
numElements;
    +  }
    +
       public void initialize(BufferHolder holder, int numElements, int 
fixedElementSize) {
    -    // We need 4 bytes to store numElements and 4 bytes each element to 
store offset.
    --- End diff --
    
    We still need to comment about the `numElements` stuff, or it will confuse 
other reader when they see `startingOffset + 4` later.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to