mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
13 lines
198 B
C++
13 lines
198 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void assertProcessUserMatchesDataOwner(
|
|
const std::string & path, std::function<void(const std::string &)> on_warning);
|
|
|
|
}
|