Removed compilation bug

This commit is contained in:
divanik 2024-11-07 18:42:54 +00:00
parent 34da26df32
commit 362b20bb7b

View File

@ -93,15 +93,15 @@ private:
DataTypePtr getFieldType(const Poco::JSON::Object::Ptr &field,
const String &type_key, bool required);
DataTypePtr getSimpleType(const String &type_name);
std::shared_ptr<ActionsDAG> getSchemaTransformationDag(
const Poco::JSON::Object::Ptr & old_schema, [const Poco::JSON::Object::Ptr & new_schema);
std::shared_ptr<ActionsDAG>
getSchemaTransformationDag(const Poco::JSON::Object::Ptr & old_schema, const Poco::JSON::Object::Ptr & new_schema);
bool allowPrimitiveTypeConversion(const String & old_type, const String & new_type);
bool allowPrimitiveTypeConversion(const String & old_type, const String & new_type);
const Node * getDefaultNodeForField(const Poco::JSON::Object::Ptr & field);
const Node * getDefaultNodeForField(const Poco::JSON::Object::Ptr & field);
Int32 current_old_id = -1;
Int32 current_new_id = -1;
Int32 current_old_id = -1;
Int32 current_new_id = -1;
};