blob: fa8bb282360014c1566a646b2524ac8e6d41dce4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
}
|