mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
18 lines
259 B
C++
18 lines
259 B
C++
#pragma once
|
|
|
|
#include <common/types.h>
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class IStorage;
|
|
|
|
using ConstStoragePtr = std::shared_ptr<const IStorage>;
|
|
using StoragePtr = std::shared_ptr<IStorage>;
|
|
using Tables = std::map<String, StoragePtr>;
|
|
|
|
}
|