aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Disks/loadLocalDiskConfig.h
blob: ba1ac5378a4cdef937b81bd9762f3eb9068023cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#include <Core/Types.h>
#include <Interpreters/Context_fwd.h>

namespace Poco::Util { class AbstractConfiguration; }

namespace DB
{
void loadDiskLocalConfig(
    const String & name,
    const Poco::Util::AbstractConfiguration & config,
    const String & config_prefix,
    ContextPtr context,
    String & path,
    UInt64 & keep_free_space_bytes);
}