ClickHouse/src/DataTypes/DataTypeCustomGeo.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
627 B
C++
Raw Normal View History

2021-01-19 17:16:10 +00:00
#pragma once
2020-06-07 16:52:11 +00:00
#include <DataTypes/DataTypeCustom.h>
namespace DB
{
class DataTypePointName : public DataTypeCustomFixedName
2020-06-07 16:52:11 +00:00
{
public:
DataTypePointName() : DataTypeCustomFixedName("Point") {}
2020-06-07 16:52:11 +00:00
};
class DataTypeRingName : public DataTypeCustomFixedName
2020-06-07 17:28:05 +00:00
{
public:
DataTypeRingName() : DataTypeCustomFixedName("Ring") {}
2020-06-07 17:28:05 +00:00
};
class DataTypePolygonName : public DataTypeCustomFixedName
2020-06-07 17:28:05 +00:00
{
public:
DataTypePolygonName() : DataTypeCustomFixedName("Polygon") {}
2020-06-07 17:28:05 +00:00
};
class DataTypeMultiPolygonName : public DataTypeCustomFixedName
2020-06-07 17:28:05 +00:00
{
public:
DataTypeMultiPolygonName() : DataTypeCustomFixedName("MultiPolygon") {}
2020-06-07 17:28:05 +00:00
};
2020-06-07 16:52:11 +00:00
}