mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
17 lines
316 B
C++
17 lines
316 B
C++
#pragma once
|
|
|
|
#include <IO/WriteBuffer.h>
|
|
#include <Core/NamesAndTypes.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct StructureToProtobufSchema
|
|
{
|
|
static constexpr auto name = "structureToProtobufSchema";
|
|
|
|
static void writeSchema(WriteBuffer & buf, const String & message_name, const NamesAndTypesList & names_and_types_);
|
|
};
|
|
|
|
}
|