fixed the MSan exception on ColumnConst(ColumnDecimal) ctor

This commit is contained in:
myrrc 2020-11-05 12:10:26 +03:00
parent c09fcf846d
commit bcd8f1896f

View File

@ -127,7 +127,9 @@ public:
bool isNumeric() const override { return false; }
bool canBeInsideNullable() const override { return true; }
bool isFixedAndContiguous() const override { return true; }
bool isFixedAndContiguous() const final { return is_POD; }
size_t sizeOfValueIfFixed() const override { return sizeof(T); }
size_t size() const override { return data.size(); }