You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@gora.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2016/01/15 18:03:39 UTC

[jira] [Created] (GORA-461) Ineffective null check in HBaseStore#getPartitions

Ted Yu created GORA-461:
---------------------------

             Summary: Ineffective null check in HBaseStore#getPartitions
                 Key: GORA-461
                 URL: https://issues.apache.org/jira/browse/GORA-461
             Project: Apache Gora
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


Here is related code:
{code}
    Pair<byte[][], byte[][]> keys = table.getStartEndKeys();
    if (keys == null || keys.getFirst() == null ||
        keys.getFirst().length == 0) {
      throw new IOException("Expecting at least one region.");
    }
    if (table == null) {
      throw new IOException("No table was provided.");
{code}
The null check is ineffective since table has been de-referenced before the check.



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