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:
parent
07e4c7264a
commit
9d1d24095c
|
@ -14,6 +14,7 @@ Release 0.21.0 - Unreleased
|
||||||
HBASE-1779 ThriftServer logged error if getVer() result is empty
|
HBASE-1779 ThriftServer logged error if getVer() result is empty
|
||||||
HBASE-1778 Improve PerformanceEvaluation (Schubert Zhang via Stack)
|
HBASE-1778 Improve PerformanceEvaluation (Schubert Zhang via Stack)
|
||||||
HBASE-1751 Fix KeyValue javadoc on getValue for client-side
|
HBASE-1751 Fix KeyValue javadoc on getValue for client-side
|
||||||
|
HBASE-1824 [stargate] default timestamp should be LATEST_TIMESTAMP
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1760 Cleanup TODOs in HTable
|
HBASE-1760 Cleanup TODOs in HTable
|
||||||
|
|
|
@ -58,7 +58,7 @@ import com.google.protobuf.ByteString;
|
||||||
public class CellModel implements ProtobufMessageHandler, Serializable {
|
public class CellModel implements ProtobufMessageHandler, Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
private long timestamp;
|
private long timestamp = HConstants.LATEST_TIMESTAMP;
|
||||||
private byte[] column;
|
private byte[] column;
|
||||||
private byte[] value;
|
private byte[] value;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue