We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32adf05 commit 6488202Copy full SHA for 6488202
cloud/examples/cloud_dump.cc
@@ -92,8 +92,8 @@ int main() {
92
93
// verify that the data is somewhat sane by manaully scanning for cfs
94
std::vector<std::string> cf_names;
95
- s = rocksdb::DB::ListColumnFamilies(options, kDBPath, &cf_names);
96
- for (std::string cf : cf_names) {
+ s = ROCKSDB_NAMESPACE::DB::ListColumnFamilies(options, kDBPath, &cf_names);
+ for (const std::string & cf : cf_names) {
97
std::cout << " Found Column Family " << cf;
98
}
99
std::cout << " \n";
0 commit comments