Index: hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java =================================================================== --- hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java (revision 1564561) +++ hbase-client/src/main/java/org/apache/hadoop/hbase/HTableDescriptor.java (working copy) @@ -597,6 +597,19 @@ } /** + * Check if deferred log edits are enabled on the table. + * + * @return true if that deferred log flush is enabled on the table + * + * @see #setDeferredLogFlush(boolean) + * @deprecated use {@link #getDurability()} + */ + @Deprecated + public synchronized boolean isDeferredLogFlush() { + return true; + } + + /** * Check if async log edits are enabled on the table. * * @return true if that async log flush is enabled on the table