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,14 +165,16 @@ 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);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -25,4 +25,4 @@ private:
|
||||
msgpack::object_handle object_handle;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -150,4 +150,4 @@ void registerOutputFormatProcessorMsgPack(FormatFactory & factory)
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user