mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
fix build
This commit is contained in:
parent
949c0f2d45
commit
9e5d82641f
@ -273,7 +273,6 @@ private:
|
||||
void executeSingleThread(size_t thread_num, size_t num_threads);
|
||||
void finish();
|
||||
|
||||
public:
|
||||
String dumpPipeline() const;
|
||||
};
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user