Merged with master.

This commit is contained in:
Nikolai Kochetov 2019-08-04 15:43:11 +03:00
parent 599f3ddf6e
commit abc63f8a06
4 changed files with 5 additions and 6 deletions

View File

@ -1,9 +1,9 @@
#include "config_formats.h"
#include <Processors/Formats/Impl/CapnProtoRowInputFormat.h> // Y_IGNORE
#if USE_CAPNP
#include <IO/ReadBuffer.h>
#include <Interpreters/Context.h>
#include <Processors/Formats/Impl/CapnProtoRowInputFormat.h> // Y_IGNORE
#include <Formats/FormatFactory.h>
#include <Formats/FormatSchemaInfo.h>
#include <capnp/serialize.h> // Y_IGNORE

View File

@ -1,8 +1,7 @@
#include "config_formats.h"
#if USE_PARQUET
#include <Processors/Formats/Impl/ParquetBlockInputFormat.h>
#if USE_PARQUET
#include <algorithm>
#include <iterator>
#include <vector>

View File

@ -1,7 +1,7 @@
#include "config_formats.h"
#include <Processors/Formats/Impl/ParquetBlockOutputFormat.h>
#if USE_PARQUET
# include <Processors/Formats/Impl/ParquetBlockOutputFormat.h>
// TODO: clean includes
# include <Columns/ColumnDecimal.h>

View File

@ -1,11 +1,11 @@
#include "config_formats.h"
#if USE_PROTOBUF
#include <Processors/Formats/Impl/ProtobufRowInputFormat.h>
#if USE_PROTOBUF
#include <Core/Block.h>
#include <Formats/FormatFactory.h>
#include <Formats/FormatSchemaInfo.h>
#include <Formats/ProtobufSchemas.h>
#include <Processors/Formats/Impl/ProtobufRowInputFormat.h>
namespace DB