fix build

This commit is contained in:
Anton Popov 2020-03-26 22:21:31 +03:00
parent 949c0f2d45
commit 9e5d82641f
2 changed files with 1 additions and 3 deletions

View File

@ -273,7 +273,6 @@ private:
void executeSingleThread(size_t thread_num, size_t num_threads);
void finish();
public:
String dumpPipeline() const;
};

View File

@ -1,5 +1,4 @@
#include <Columns/ColumnConst.h>
#include <Common/typeid_cast.h>
#include <DataTypes/DataTypesNumber.h>
#include <DataTypes/DataTypeNullable.h>
#include <DataTypes/FieldToDataType.h>
@ -35,7 +34,7 @@ namespace ErrorCodes
struct SpecialParserType
{
SpecialParserType() = default;
SpecialParserType(Field::Types::Which main_type_) : main_type(main_type_) {}
explicit SpecialParserType(Field::Types::Which main_type_) : main_type(main_type_) {}
Field::Types::Which main_type = Field::Types::String;
bool is_nullable = false;