mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Add Y_IGNORE (#4521)
This commit is contained in:
parent
4ad2f3d5f6
commit
23d70b2e04
@ -7,7 +7,7 @@
|
||||
# include <Common/Exception.h>
|
||||
namespace DB { namespace ErrorCodes { extern const int CPUID_ERROR; }}
|
||||
#elif USE_CPUINFO
|
||||
# include <cpuinfo.h>
|
||||
# include <cpuinfo.h> // Y_IGNORE
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
#if USE_PROTOBUF
|
||||
|
||||
#include <Formats/FormatSchemaInfo.h>
|
||||
#include <Formats/ProtobufSchemas.h>
|
||||
#include <google/protobuf/compiler/importer.h>
|
||||
#include <Formats/ProtobufSchemas.h> // Y_IGNORE
|
||||
#include <google/protobuf/compiler/importer.h> // Y_IGNORE
|
||||
#include <Common/Exception.h>
|
||||
|
||||
|
||||
|
@ -7,8 +7,8 @@
|
||||
#include <AggregateFunctions/IAggregateFunction.h>
|
||||
#include <DataTypes/DataTypesDecimal.h>
|
||||
#include <boost/numeric/conversion/cast.hpp>
|
||||
#include <google/protobuf/descriptor.h>
|
||||
#include <google/protobuf/descriptor.pb.h>
|
||||
#include <google/protobuf/descriptor.h> // Y_IGNORE
|
||||
#include <google/protobuf/descriptor.pb.h> // Y_IGNORE
|
||||
#include <IO/ReadHelpers.h>
|
||||
#include <IO/WriteHelpers.h>
|
||||
#include "ProtobufWriter.h"
|
||||
|
@ -7,7 +7,7 @@
|
||||
#include <Functions/FunctionHelpers.h>
|
||||
#include <Functions/GatherUtils/Algorithms.h>
|
||||
#include <IO/WriteHelpers.h>
|
||||
#include <libbase64.h>
|
||||
#include <libbase64.h> // Y_IGNORE
|
||||
|
||||
|
||||
namespace DB
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
#include <Common/config.h>
|
||||
#if USE_XXHASH
|
||||
#include <xxhash.h>
|
||||
#include <xxhash.h> // Y_IGNORE
|
||||
#endif
|
||||
|
||||
#include <Poco/ByteOrder.h>
|
||||
|
@ -2,7 +2,7 @@
|
||||
#if USE_BROTLI
|
||||
|
||||
#include "BrotliReadBuffer.h"
|
||||
#include <brotli/decode.h>
|
||||
#include <brotli/decode.h> // Y_IGNORE
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include <Poco/URI.h>
|
||||
|
||||
#if USE_HDFS
|
||||
#include <hdfs/hdfs.h>
|
||||
#include <hdfs/hdfs.h> // Y_IGNORE
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
@ -2,10 +2,10 @@
|
||||
|
||||
#if USE_HDFS
|
||||
|
||||
#include <IO/ReadBufferFromHDFS.h>
|
||||
#include <IO/ReadBufferFromHDFS.h> // Y_IGNORE
|
||||
#include <IO/HDFSCommon.h>
|
||||
#include <Poco/URI.h>
|
||||
#include <hdfs/hdfs.h>
|
||||
#include <hdfs/hdfs.h> // Y_IGNORE
|
||||
|
||||
|
||||
namespace DB
|
||||
|
@ -3,9 +3,9 @@
|
||||
#if USE_HDFS
|
||||
|
||||
#include <Poco/URI.h>
|
||||
#include <IO/WriteBufferFromHDFS.h>
|
||||
#include <IO/WriteBufferFromHDFS.h> // Y_IGNORE
|
||||
#include <IO/HDFSCommon.h>
|
||||
#include <hdfs/hdfs.h>
|
||||
#include <hdfs/hdfs.h> // Y_IGNORE
|
||||
|
||||
|
||||
namespace DB
|
||||
|
@ -3,12 +3,12 @@
|
||||
#if USE_HDFS
|
||||
|
||||
#include <Storages/StorageFactory.h>
|
||||
#include <Storages/StorageHDFS.h>
|
||||
#include <Storages/StorageHDFS.h> // Y_IGNORE
|
||||
#include <Interpreters/Context.h>
|
||||
#include <Interpreters/evaluateConstantExpression.h>
|
||||
#include <Parsers/ASTLiteral.h>
|
||||
#include <IO/ReadBufferFromHDFS.h>
|
||||
#include <IO/WriteBufferFromHDFS.h>
|
||||
#include <IO/ReadBufferFromHDFS.h> // Y_IGNORE
|
||||
#include <IO/WriteBufferFromHDFS.h> // Y_IGNORE
|
||||
#include <Formats/FormatFactory.h>
|
||||
#include <DataStreams/IBlockOutputStream.h>
|
||||
#include <DataStreams/UnionBlockInputStream.h>
|
||||
|
@ -1,9 +1,9 @@
|
||||
#include <Common/config.h>
|
||||
|
||||
#if USE_HDFS
|
||||
#include <Storages/StorageHDFS.h>
|
||||
#include <Storages/StorageHDFS.h> // Y_IGNORE
|
||||
#include <TableFunctions/TableFunctionFactory.h>
|
||||
#include <TableFunctions/TableFunctionHDFS.h>
|
||||
#include <TableFunctions/TableFunctionHDFS.h> // Y_IGNORE
|
||||
|
||||
namespace DB
|
||||
{
|
||||
|
@ -1,13 +1,13 @@
|
||||
#if __has_include(<cctz/civil_time.h>)
|
||||
#include <cctz/civil_time.h> // bundled, debian
|
||||
#else
|
||||
#include <civil_time.h> // freebsd
|
||||
#include <civil_time.h> // Y_IGNORE // freebsd
|
||||
#endif
|
||||
|
||||
#if __has_include(<cctz/time_zone.h>)
|
||||
#include <cctz/time_zone.h>
|
||||
#else
|
||||
#include <time_zone.h>
|
||||
#include <time_zone.h> // Y_IGNORE
|
||||
#endif
|
||||
|
||||
#include <common/DateLUTImpl.h>
|
||||
|
Loading…
Reference in New Issue
Block a user