Fix missing includes

This commit is contained in:
proller 2017-12-26 22:00:20 +03:00
parent 203363ea73
commit da1233fe3f
8 changed files with 22 additions and 1 deletions

View File

@ -8,6 +8,7 @@
#include <AggregateFunctions/IAggregateFunction.h>
#include <DataTypes/DataTypesNumber.h>
#include <Columns/ColumnVector.h>
/** This is simple, not numerically stable

View File

@ -1,5 +1,11 @@
#pragma once
#include <Common/PODArray.h>
#include <IO/WriteBuffer.h>
#include <IO/ReadBuffer.h>
#include <Core/Types.h>
#include <IO/VarInt.h>
namespace DB
{

View File

@ -1,6 +1,11 @@
#pragma once
#include <cmath>
#include <Common/RadixSort.h>
#include <Common/PODArray.h>
#include <IO/WriteBuffer.h>
#include <IO/ReadBuffer.h>
#include <IO/VarInt.h>
namespace DB

View File

@ -2,6 +2,12 @@
#include <Common/HashTable/Hash.h>
#include <Common/MemoryTracker.h>
#include <Common/PODArray.h>
#include <IO/ReadBuffer.h>
#include <IO/WriteBuffer.h>
#include <IO/ReadHelpers.h>
#include <IO/WriteHelpers.h>
#include <common/likely.h>
namespace DB

View File

@ -1,6 +1,7 @@
#pragma once
#include <Common/UInt128.h>
#include <common/strong_typedef.h>
namespace DB
{

View File

@ -1,12 +1,12 @@
#pragma once
#include <DataStreams/IRowInputStream.h>
#include <Core/Block.h>
namespace DB
{
class Block;
class ReadBuffer;

View File

@ -1,6 +1,7 @@
#pragma once
#include <thread>
#include <functional>
#include <common/MultiVersion.h>
#include <Poco/Event.h>

View File

@ -3,6 +3,7 @@
#include <cstring>
#include <iostream>
#include <type_traits>
#include <vector>
#include <mysqlxx/Types.h>
#include <mysqlxx/Row.h>