Fix build, ya make

This commit is contained in:
kssenii 2021-06-14 11:44:09 +00:00
parent a1f11f5178
commit cd885ee750
5 changed files with 10 additions and 3 deletions

View File

@ -15,6 +15,7 @@ SRCS(
DiskMemory.cpp
DiskRestartProxy.cpp
DiskSelector.cpp
DiskWebServer.cpp
IDisk.cpp
IDiskRemote.cpp
IVolume.cpp

View File

@ -3,6 +3,7 @@
#include <common/logger_useful.h>
#include <Core/Types.h>
#include <IO/ReadWriteBufferFromHTTP.h>
#include <IO/ConnectionTimeoutsContext.h>
#include <thread>

View File

@ -53,6 +53,7 @@ SRCS(
ReadBufferFromMemory.cpp
ReadBufferFromPocoSocket.cpp
ReadHelpers.cpp
ReadIndirectBufferFromWebServer.cpp
SeekAvoidingReadBuffer.cpp
TimeoutSetter.cpp
UseSSL.cpp

View File

@ -1,6 +1,8 @@
#pragma once
#if !defined(ARCADIA_BUILD)
#include <Common/config.h>
#endif
#if USE_HDFS
#include <IO/ReadBuffer.h>

View File

@ -1,6 +1,8 @@
#pragma once
#if !defined(ARCADIA_BUILD)
#include <Common/config.h>
#endif
#if USE_HDFS
#include <IO/WriteBuffer.h>
@ -19,7 +21,7 @@ class WriteBufferFromHDFS final : public BufferWithOwnMemory<WriteBuffer>
public:
WriteBufferFromHDFS(
const std::string & hdfs_name_,
const String & hdfs_name_,
const Poco::Util::AbstractConfiguration & config_,
size_t buf_size_ = DBMS_DEFAULT_BUFFER_SIZE,
int flags = O_WRONLY);