Some fixups, pt. III

This commit is contained in:
Robert Schulze 2024-05-19 13:28:38 +00:00
parent b1d3eb4c4d
commit 4fdcdc284d
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A
3 changed files with 0 additions and 3 deletions

View File

@ -10,7 +10,6 @@ class DataTypeDate final : public DataTypeNumberBase<UInt16>
{
public:
static constexpr auto family_name = "Date";
static constexpr auto type_id = TypeIndex::Date;
TypeIndex getTypeId() const override { return TypeIndex::Date; }
TypeIndex getColumnType() const override { return TypeIndex::UInt16; }

View File

@ -9,7 +9,6 @@ class DataTypeDate32 final : public DataTypeNumberBase<Int32>
{
public:
static constexpr auto family_name = "Date32";
static constexpr auto type_id = TypeIndex::Date32;
TypeIndex getTypeId() const override { return TypeIndex::Date32; }
TypeIndex getColumnType() const override { return TypeIndex::Int32; }

View File

@ -36,7 +36,6 @@ public:
explicit DataTypeDateTime(const TimezoneMixin & time_zone);
static constexpr auto family_name = "DateTime";
static constexpr auto type_id = TypeIndex::DateTime;
const char * getFamilyName() const override { return family_name; }
String doGetName() const override;