| 25 | StorageDriver::~StorageDriver() = default; |
| 26 | |
| 27 | static TableCatalogEntry* getEntry(const ClientContext& context, const std::string& tableName) { |
| 28 | return Catalog::Get(context)->getTableCatalogEntry(Transaction::Get(context), tableName); |
| 29 | } |
| 30 | |
| 31 | static Table* getTable(const ClientContext& context, const std::string& tableName) { |
| 32 | return StorageManager::Get(context)->getTable(getEntry(context, tableName)->getTableID()); |
no test coverage detected