mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
23 lines
398 B
C++
23 lines
398 B
C++
#pragma once
|
|
|
|
#include <Interpreters/Context_fwd.h>
|
|
#include <Core/Types.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
template <typename Configuration, typename MetadataReadHelper>
|
|
struct HudiMetadataParser
|
|
{
|
|
public:
|
|
HudiMetadataParser<Configuration, MetadataReadHelper>();
|
|
|
|
Strings getFiles(const Configuration & configuration, ContextPtr context);
|
|
|
|
private:
|
|
struct Impl;
|
|
std::shared_ptr<Impl> impl;
|
|
};
|
|
|
|
}
|