Java-API: Missing space in string literal (#7982)
Summary: `TtlDB.open()`: missing space after 'column' `AdvancedColumnFamilyOptionsInterface.setLevelCompactionDynamicLevelBytes()`: missing space after 'cause' Pull Request resolved: https://github.com/facebook/rocksdb/pull/7982 Reviewed By: ajkr Differential Revision: D26546632 Pulled By: jay-zhuang fbshipit-source-id: 885dedcaa2200842764fbac9ce3766d54e1c8914
This commit is contained in:
parent
8643d63bb4
commit
430842f948
@ -301,7 +301,7 @@ public interface AdvancedColumnFamilyOptionsInterface<
|
||||
* @return the reference to the current options.
|
||||
*/
|
||||
@Experimental("Turning this feature on or off for an existing DB can cause" +
|
||||
"unexpected LSM tree structure so it's not recommended")
|
||||
" unexpected LSM tree structure so it's not recommended")
|
||||
T setLevelCompactionDynamicLevelBytes(
|
||||
boolean enableLevelCompactionDynamicLevelBytes);
|
||||
|
||||
|
@ -113,7 +113,7 @@ public class TtlDB extends RocksDB {
|
||||
throws RocksDBException {
|
||||
if (columnFamilyDescriptors.size() != ttlValues.size()) {
|
||||
throw new IllegalArgumentException("There must be a ttl value per column"
|
||||
+ "family handle.");
|
||||
+ " family handle.");
|
||||
}
|
||||
|
||||
final byte[][] cfNames = new byte[columnFamilyDescriptors.size()][];
|
||||
|
Loading…
Reference in New Issue
Block a user