Make table cache non-copyable
This commit is contained in:
parent
f57513a1d6
commit
dbf24d9a0c
@ -22,6 +22,10 @@ class Env;
|
|||||||
class TableCache {
|
class TableCache {
|
||||||
public:
|
public:
|
||||||
TableCache(const std::string& dbname, const Options& options, int entries);
|
TableCache(const std::string& dbname, const Options& options, int entries);
|
||||||
|
|
||||||
|
TableCache(const TableCache&) = delete;
|
||||||
|
TableCache& operator=(const TableCache&) = delete;
|
||||||
|
|
||||||
~TableCache();
|
~TableCache();
|
||||||
|
|
||||||
// Return an iterator for the specified file number (the corresponding
|
// Return an iterator for the specified file number (the corresponding
|
||||||
|
Loading…
Reference in New Issue
Block a user