소스 검색

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

불러오는 중...
취소
저장