Fix style

This commit is contained in:
avogar 2022-12-30 16:46:21 +00:00
parent a74ffa70bc
commit 2ca3a74b9a
2 changed files with 0 additions and 6 deletions

View File

@ -16,11 +16,6 @@ namespace ProfileEvents
namespace DB
{
namespace ErrorCodes
{
extern const int LOGICAL_ERROR;
}
KafkaProducer::KafkaProducer(
ProducerPtr producer_, const std::string & topic_, std::chrono::milliseconds poll_timeout, std::atomic<bool> & shutdown_called_, const Block & header)
: producer(producer_), topic(topic_), timeout(poll_timeout), shutdown_called(shutdown_called_)

View File

@ -1,7 +1,6 @@
#include <Storages/MessageQueueSink.h>
#include <Formats/FormatFactory.h>
#include <Processors/Formats/IRowOutputFormat.h>
#include <Core/BackgroundSchedulePool.h>
namespace DB
{