HBASE-1824 [stargate] default timestamp should be LATEST_TIMESTAMP

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@813561 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andrew Kyle Purtell 2009-09-10 19:41:07 +00:00
parent 07e4c7264a
commit 9d1d24095c
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ Release 0.21.0 - Unreleased
HBASE-1779 ThriftServer logged error if getVer() result is empty
HBASE-1778 Improve PerformanceEvaluation (Schubert Zhang via Stack)
HBASE-1751 Fix KeyValue javadoc on getValue for client-side
HBASE-1824 [stargate] default timestamp should be LATEST_TIMESTAMP
IMPROVEMENTS
HBASE-1760 Cleanup TODOs in HTable

View File

@ -58,7 +58,7 @@ import com.google.protobuf.ByteString;
public class CellModel implements ProtobufMessageHandler, Serializable {
private static final long serialVersionUID = 1L;
private long timestamp;
private long timestamp = HConstants.LATEST_TIMESTAMP;
private byte[] column;
private byte[] value;