This commit is contained in:
Nikita Mikhailov 2021-02-20 17:39:45 +03:00 committed by Nikita Mikhaylov
parent 681b0b63f1
commit 56700ed3e9
3 changed files with 1 additions and 3 deletions

View File

@ -7,9 +7,9 @@ namespace DB
namespace ErrorCodes
{
extern const int ILLEGAL_COLUMN;
extern const int BAD_ARGUMENTS;
extern const int LOGICAL_ERROR;
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
}
template <typename Point>

View File

@ -27,7 +27,6 @@ namespace DB
namespace ErrorCodes
{
extern const int BAD_ARGUMENTS;
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
}
template <typename Point>

View File

@ -434,7 +434,6 @@ private:
out_container.emplace_back(x_data[i], y_data[i]);
}
}
void parseConstPolygonWithoutHolesFromSingleColumn(const IColumn & column, size_t i, Polygon & out_polygon) const