[ 
https://issues.apache.org/jira/browse/TAJO-1299?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14273426#comment-14273426
 ] 

ASF GitHub Bot commented on TAJO-1299:
--------------------------------------

GitHub user ykrips opened a pull request:

    https://github.com/apache/tajo/pull/348

    TAJO-1299: TB and PB representations in StorageUnit are overflow

    

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/ykrips/tajo TAJO-1299

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/tajo/pull/348.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #348
    
----
commit 960bdb799dfc7f4d3a512aa95b7308bd3882b1a6
Author: Jihun Kang <[email protected]>
Date:   2015-01-12T09:20:59Z

    TAJO-1299: TB and PB representations in StorageUnit are overflow

----


> TB and PB representations in StorageUnit are overflow
> -----------------------------------------------------
>
>                 Key: TAJO-1299
>                 URL: https://issues.apache.org/jira/browse/TAJO-1299
>             Project: Tajo
>          Issue Type: Bug
>          Components: storage
>            Reporter: Hyunsik Choi
>            Assignee: Jihun Kang
>             Fix For: 0.10
>
>
> See the StorageUnit class. TB and PB are overflow against integer 
> presentation.
> {code:java}
> public class StorageUnit {
>       public static final int B = 8;
>       public static final int KB = 1024;
>       public static final int MB = KB * 1024;
>       public static final int GB = MB * 1024;
>       public static final int TB = GB * 1024;
>       public static final int PB = TB * 1024;
> }
> {code}



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

Reply via email to