mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Fix style and build errors.
This commit is contained in:
parent
b02636f916
commit
bc9d18a9c4
@ -165,12 +165,14 @@ bool MsgPackRowInputFormat::readRow(MutableColumns & columns, RowReadExtension &
|
||||
return true;
|
||||
}
|
||||
|
||||
void registerInputFormatProcessorMsgPack(FormatFactory & factory) {
|
||||
void registerInputFormatProcessorMsgPack(FormatFactory & factory)
|
||||
{
|
||||
factory.registerInputFormatProcessor("MsgPack", [](
|
||||
ReadBuffer &buf,
|
||||
const Block &sample,
|
||||
const RowInputFormatParams ¶ms,
|
||||
const FormatSettings &) {
|
||||
const FormatSettings &)
|
||||
{
|
||||
return std::make_shared<MsgPackRowInputFormat>(sample, buf, params);
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user