mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
13 lines
223 B
C++
13 lines
223 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
|
|
namespace DB
|
|
{
|
|
class ASTStorage;
|
|
class Context;
|
|
using ContextPtr = std::shared_ptr<const Context>;
|
|
|
|
String getDiskName(ASTStorage & storage_def, ContextPtr context);
|
|
}
|