Return-Path: Delivered-To: apmail-hadoop-hbase-dev-archive@locus.apache.org Received: (qmail 41086 invoked from network); 3 Sep 2008 20:06:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Sep 2008 20:06:46 -0000 Received: (qmail 82398 invoked by uid 500); 3 Sep 2008 20:06:44 -0000 Delivered-To: apmail-hadoop-hbase-dev-archive@hadoop.apache.org Received: (qmail 82257 invoked by uid 500); 3 Sep 2008 20:06:44 -0000 Mailing-List: contact hbase-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hbase-dev@hadoop.apache.org Delivered-To: mailing list hbase-dev@hadoop.apache.org Received: (qmail 82246 invoked by uid 99); 3 Sep 2008 20:06:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Sep 2008 13:06:44 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Sep 2008 20:05:43 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4463D234C1C8 for ; Wed, 3 Sep 2008 13:05:44 -0700 (PDT) Message-ID: <1600825491.1220472344279.JavaMail.jira@brutus> Date: Wed, 3 Sep 2008 13:05:44 -0700 (PDT) From: "stack (JIRA)" To: hbase-dev@hadoop.apache.org Subject: [jira] Updated: (HBASE-861) get with timestamp will return a value if there is a version with an earlier timestamp In-Reply-To: <1872477284.1220388944203.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-861?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack updated HBASE-861: ------------------------ Fix Version/s: (was: 0.2.1) (was: 0.18.0) 0.2.2 Moved this out of 0.2.1. > 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.2 > > 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.