浏览代码

Make table cache non-copyable

main
ehds 3 年前
父节点
当前提交
dbf24d9a0c
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. +4
    -0
      db/table_cache.h

+ 4
- 0
db/table_cache.h 查看文件

@ -22,6 +22,10 @@ class Env;
class TableCache {
public:
TableCache(const std::string& dbname, const Options& options, int entries);
TableCache(const TableCache&) = delete;
TableCache& operator=(const TableCache&) = delete;
~TableCache();
// Return an iterator for the specified file number (the corresponding

正在加载...
取消
保存