You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Jim Kellerman (JIRA)" <ji...@apache.org> on 2008/09/02 22:57:44 UTC

[jira] Updated: (HBASE-861) get with timestamp will return a value if there is a version with an earlier timestamp

     [ https://issues.apache.org/jira/browse/HBASE-861?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jim Kellerman updated HBASE-861:
--------------------------------

    Attachment: TestGetTimestamp.java

Test program that demonstrates the problem.

> 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
>
>         Attachments: TestGetTimestamp.java
>
>
> 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.