mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
2716df8ab2
Added: * IDataTypeDomain interface; * method DataTypeFactory::registerDataTypeDomain for registering domains; * DataTypeDomainWithSimpleSerialization domain base class with simple serialization/deserialization; * Concrete IPv4 and IPv6 domain implementations: DataTypeDomanIPv6 and DataTypeDomanIPv4; Updated: * IDataType text serialization/deserialization methods; * IDataType implementation to use domain for text serialization/deserialization; * Refactored implementation of the IPv4/IPv6 functions to use formatIPv4/v6 and parseIPv4/v6 from Common/formatIPv6.h; Tests: * Added test cases for IPv4 and IPv6 domains. * Updated IPv4/v6 functions tests to validate more cases; * Added performance tests for IPv4 and IPv6 related functions;
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
#include <Formats/ValuesRowOutputStream.h>
|
|
#include <Formats/FormatFactory.h>
|
|
#include <Formats/BlockOutputStreamFromRowOutputStream.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Columns/IColumn.h>
|
|
#include <DataTypes/IDataType.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
|
|
ValuesRowOutputStream::ValuesRowOutputStream(WriteBuffer & ostr_, const FormatSettings & format_settings)
|
|
: ostr(ostr_), format_settings(format_settings)
|
|
{
|
|
}
|
|
|
|
void ValuesRowOutputStream::flush()
|
|
{
|
|
ostr.next();
|
|
}
|
|
|
|
void ValuesRowOutputStream::writeField(const IColumn & column, const IDataType & type, size_t row_num)
|
|
{
|
|
type.serializeAsTextQuoted(column, row_num, ostr, format_settings);
|
|
}
|
|
|
|
void ValuesRowOutputStream::writeFieldDelimiter()
|
|
{
|
|
writeChar(',', ostr);
|
|
}
|
|
|
|
void ValuesRowOutputStream::writeRowStartDelimiter()
|
|
{
|
|
writeChar('(', ostr);
|
|
}
|
|
|
|
void ValuesRowOutputStream::writeRowEndDelimiter()
|
|
{
|
|
writeChar(')', ostr);
|
|
}
|
|
|
|
void ValuesRowOutputStream::writeRowBetweenDelimiter()
|
|
{
|
|
writeCString(",", ostr);
|
|
}
|
|
|
|
|
|
void registerOutputFormatValues(FormatFactory & factory)
|
|
{
|
|
factory.registerOutputFormat("Values", [](
|
|
WriteBuffer & buf,
|
|
const Block & sample,
|
|
const Context &,
|
|
const FormatSettings & settings)
|
|
{
|
|
return std::make_shared<BlockOutputStreamFromRowOutputStream>(
|
|
std::make_shared<ValuesRowOutputStream>(buf, settings), sample);
|
|
});
|
|
}
|
|
|
|
}
|