You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Jean-Marc Spaggiari (JIRA)" <ji...@apache.org> on 2014/07/23 21:03:39 UTC

[jira] [Created] (HBASE-11579) CopyTable should check endtime value only if != 0

Jean-Marc Spaggiari created HBASE-11579:
-------------------------------------------

             Summary: CopyTable should check endtime value only if != 0
                 Key: HBASE-11579
                 URL: https://issues.apache.org/jira/browse/HBASE-11579
             Project: HBase
          Issue Type: Bug
          Components: mapreduce
    Affects Versions: 0.98.4, 0.99.0
            Reporter: Jean-Marc Spaggiari
            Assignee: Jean-Marc Spaggiari


CopyTable automatically assign an endTime if startTime is specified and endTime is node:
{code}
    if (startTime != 0) {
      scan.setTimeRange(startTime,
          endTime == 0 ? HConstants.LATEST_TIMESTAMP : endTime);
    }
{code}

However, we test if endTime is == 0 and exit before we get a chance to set the range:
{code}
      if (startTime > endTime) {
        printUsage("Invalid time range filter: starttime=" + startTime + " >  endtime=" + endTime);
        return false;
      }
{code}

So we need to check endTime only if it's != 0.



--
This message was sent by Atlassian JIRA
(v6.2#6252)