Minor modification

This commit is contained in:
Alexey Milovidov 2020-01-18 23:12:58 +03:00
parent f0b4fcee1f
commit ac46498f60
2 changed files with 3 additions and 3 deletions

View File

@ -608,7 +608,7 @@ AvroDeserializer & AvroConfluentRowInputFormat::getOrCreateDeserializer(SchemaId
void registerInputFormatProcessorAvro(FormatFactory & factory)
{
factory.registerInputFormatProcessor("Avro", [=](
factory.registerInputFormatProcessor("Avro", [](
ReadBuffer & buf,
const Block & sample,
const RowInputFormatParams & params,
@ -618,7 +618,7 @@ void registerInputFormatProcessorAvro(FormatFactory & factory)
});
#if USE_POCO_JSON
factory.registerInputFormatProcessor("AvroConfluent",[=](
factory.registerInputFormatProcessor("AvroConfluent",[](
ReadBuffer & buf,
const Block & sample,
const RowInputFormatParams & params,

View File

@ -342,7 +342,7 @@ void AvroRowOutputFormat::writeSuffix()
void registerOutputFormatProcessorAvro(FormatFactory & factory)
{
factory.registerOutputFormatProcessor("Avro",[=](
factory.registerOutputFormatProcessor("Avro", [](
WriteBuffer & buf,
const Block & sample,
FormatFactory::WriteCallback callback,