mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
22 lines
395 B
C++
22 lines
395 B
C++
|
#pragma once
|
||
|
|
||
|
#include "config_core.h"
|
||
|
|
||
|
#include <Storages/IStorage.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class StorageHudi final : public IStorage {
|
||
|
public:
|
||
|
StorageHudi(
|
||
|
const StorageID & table_id_,
|
||
|
ColumnsDescription columns_description_,
|
||
|
ConstraintsDescription constraints_description_,
|
||
|
const String & comment);
|
||
|
|
||
|
String getName() const override { return "Hudi"; }
|
||
|
};
|
||
|
|
||
|
}
|