mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
33 lines
627 B
C++
33 lines
627 B
C++
#pragma once
|
|
|
|
#include <DataTypes/DataTypeCustom.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class DataTypePointName : public DataTypeCustomFixedName
|
|
{
|
|
public:
|
|
DataTypePointName() : DataTypeCustomFixedName("Point") {}
|
|
};
|
|
|
|
class DataTypeRingName : public DataTypeCustomFixedName
|
|
{
|
|
public:
|
|
DataTypeRingName() : DataTypeCustomFixedName("Ring") {}
|
|
};
|
|
|
|
class DataTypePolygonName : public DataTypeCustomFixedName
|
|
{
|
|
public:
|
|
DataTypePolygonName() : DataTypeCustomFixedName("Polygon") {}
|
|
};
|
|
|
|
class DataTypeMultiPolygonName : public DataTypeCustomFixedName
|
|
{
|
|
public:
|
|
DataTypeMultiPolygonName() : DataTypeCustomFixedName("MultiPolygon") {}
|
|
};
|
|
|
|
}
|