ClickHouse/src/Common/assertProcessUserMatchesDataOwner.h
2023-06-20 11:42:22 +03:00

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);
}