mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
0821d62516
Also a couple of massive include-refactorings with better forwarding
18 lines
248 B
C++
18 lines
248 B
C++
#pragma once
|
|
|
|
#include <Core/Types.h>
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class IStorage;
|
|
|
|
using StoragePtr = std::shared_ptr<IStorage>;
|
|
using StorageWeakPtr = std::weak_ptr<IStorage>;
|
|
using Tables = std::map<String, StoragePtr>;
|
|
|
|
}
|