mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
20 lines
386 B
C++
20 lines
386 B
C++
#pragma once
|
|
|
|
#include <Core/Types_fwd.h>
|
|
#include <base/types.h>
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class IStorage;
|
|
struct SnapshotDetachedTable;
|
|
|
|
using ConstStoragePtr = std::shared_ptr<const IStorage>;
|
|
using StoragePtr = std::shared_ptr<IStorage>;
|
|
using Tables = std::map<String, StoragePtr>;
|
|
using SnapshotDetachedTables = std::map<String, SnapshotDetachedTable>;
|
|
}
|