Revision 513b5ce61806159dd184cc83ac615d8c824aab57 authored by Yanqin Jin on 27 April 2018, 04:09:53 UTC, committed by Facebook Github Bot on 27 April 2018, 04:12:51 UTC
Summary:
With ColumnFamilyData::pending_flush_, we have the following code snippet in DBImpl::ScheedulePendingFlush

```
if (!cfd->pending_flush() && cfd->imm()->IsFlushPending()) {
...
}
```

`Pending` is ambiguous, and I feel `queued_for_flush` is a better name,
especially for the sake of readability.
Closes https://github.com/facebook/rocksdb/pull/3777

Differential Revision: D7783066

Pulled By: riversand963

fbshipit-source-id: f1bd8c8bfe5eafd2c94da0d8566c9b2b6bb57229
1 parent 37cd617
History
File Mode Size
buckify_rocksdb.py -rw-r--r-- 5.1 KB
rocks_test_runner.sh -rwxr-xr-x 196 bytes
targets_builder.py -rw-r--r-- 1.9 KB
targets_cfg.py -rw-r--r-- 3.7 KB
util.py -rw-r--r-- 3.1 KB

back to top