You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2016/08/24 20:35:26 UTC

hbase git commit: HBASE-16495 When accessed via Thrift, all column families have timeToLive equal to -1 (Tigran Saluev)

Repository: hbase
Updated Branches:
  refs/heads/master bf7015d32 -> 9cbe516b1


HBASE-16495 When accessed via Thrift, all column families have timeToLive equal to -1 (Tigran Saluev)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/9cbe516b
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/9cbe516b
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/9cbe516b

Branch: refs/heads/master
Commit: 9cbe516b1f63bc8ed1635412da902b6a90ab09db
Parents: bf7015d
Author: tedyu <yu...@gmail.com>
Authored: Wed Aug 24 13:35:18 2016 -0700
Committer: tedyu <yu...@gmail.com>
Committed: Wed Aug 24 13:35:18 2016 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/hadoop/hbase/thrift/ThriftUtilities.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/9cbe516b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftUtilities.java
----------------------------------------------------------------------
diff --git a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftUtilities.java b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftUtilities.java
index dd0c52c..9a3eb58 100644
--- a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftUtilities.java
+++ b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/ThriftUtilities.java
@@ -94,6 +94,7 @@ public class ThriftUtilities {
     col.inMemory = in.isInMemory();
     col.blockCacheEnabled = in.isBlockCacheEnabled();
     col.bloomFilterType = in.getBloomFilterType().toString();
+    col.timeToLive = in.getTimeToLive();
     return col;
   }