Merge pull request #31258 from cccgp/move_InputCreatorFunc_to_InputCreator

move InputCreatorFunc to InputCreator
This commit is contained in:
Kseniia Sumarokova 2021-11-12 00:05:21 +03:00 committed by GitHub
commit 1bf30709f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,