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