get with timestamp will return a value if there is a version with an earlier 
timestamp
--------------------------------------------------------------------------------------

                 Key: HBASE-861
                 URL: https://issues.apache.org/jira/browse/HBASE-861
             Project: Hadoop HBase
          Issue Type: Bug
    Affects Versions: 0.2.0, 0.2.1, 0.18.0
            Reporter: Jim Kellerman
            Priority: Critical
             Fix For: 0.2.1, 0.18.0


When an explicit timestamp is specified, no results should be returned if there 
is no value stored at that timestamp.

A value should be returned (as it currently is) if the timestamp is defaulted 
or is LATEST_TIMESTAMP (which is the same thing). This works correctly.

Table name "web", columns: "contents:", "anchor:"

store com.cnn.www/contents:/5 value = "t5"
store com.cnn.www/anchor:my.look.ca:/8 value = "CNN.com"
com.cnn.www/anchor:cnnsi.com/9 value = "CNN"

get(com.cnn.www/contents:/8) should return nothing but returns value="t5", 
timestamp=5
get(com.cnn.www/anchor:my.look.ca:/9) should return nothing, but returns 
value="CNN.com", timestamp=8


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to