You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by qiuchenjian <gi...@git.apache.org> on 2019/01/08 00:59:36 UTC

[GitHub] carbondata pull request #3053: [CARBONDATA-3233]Fix JVM crash issue in snapp...

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

    https://github.com/apache/carbondata/pull/3053#discussion_r245848950
  
    --- Diff: core/src/main/java/org/apache/carbondata/core/datastore/page/UnsafeFixLengthColumnPage.java ---
    @@ -369,7 +367,7 @@ public BigDecimal getDecimal(int rowId) {
     
       @Override
       public double[] getDoublePage() {
    -    double[] data = new double[getPageSize()];
    +    double[] data = new double[getEndLoop()];
    --- End diff --
    
    the return values of getPageSize() and getEndLoop seem to be same, when they are diff?


---