mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
45 lines
787 B
C++
45 lines
787 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <Core/Block.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/** Common part for implementation of MySQLBlockInputStream, MongoDBBlockInputStream and others.
|
|
*/
|
|
struct ExternalResultDescription
|
|
{
|
|
enum struct ValueType
|
|
{
|
|
vtUInt8,
|
|
vtUInt16,
|
|
vtUInt32,
|
|
vtUInt64,
|
|
vtInt8,
|
|
vtInt16,
|
|
vtInt32,
|
|
vtInt64,
|
|
vtFloat32,
|
|
vtFloat64,
|
|
vtString,
|
|
vtDate,
|
|
vtDateTime,
|
|
vtUUID,
|
|
vtDateTime64,
|
|
vtDecimal32,
|
|
vtDecimal64,
|
|
vtDecimal128,
|
|
vtDecimal256,
|
|
vtArray,
|
|
vtFixedString
|
|
};
|
|
|
|
Block sample_block;
|
|
std::vector<std::pair<ValueType, bool /* is_nullable */>> types;
|
|
|
|
void init(const Block & sample_block_);
|
|
};
|
|
|
|
}
|