mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
Merge pull request #31258 from cccgp/move_InputCreatorFunc_to_InputCreator
move InputCreatorFunc to InputCreator
This commit is contained in:
commit
1bf30709f0
@ -68,13 +68,11 @@ public:
|
||||
size_t row)>;
|
||||
|
||||
private:
|
||||
using InputCreatorFunc = InputFormatPtr(
|
||||
ReadBuffer & buf,
|
||||
const Block & header,
|
||||
const RowInputFormatParams & params,
|
||||
const FormatSettings & settings);
|
||||
|
||||
using InputCreator = std::function<InputCreatorFunc>;
|
||||
using InputCreator = std::function<InputFormatPtr(
|
||||
ReadBuffer & buf,
|
||||
const Block & header,
|
||||
const RowInputFormatParams & params,
|
||||
const FormatSettings & settings)>;
|
||||
|
||||
using OutputCreator = std::function<OutputFormatPtr(
|
||||
WriteBuffer & buf,
|
||||
|
Loading…
Reference in New Issue
Block a user