From 5286fa65c4b1f383ebadb4b5fbe12bc397091ccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Mar=C3=ADn?= Date: Tue, 19 Nov 2024 15:07:17 +0100 Subject: [PATCH] Fix --- src/DataTypes/DataTypeDecimalBase.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/DataTypes/DataTypeDecimalBase.h b/src/DataTypes/DataTypeDecimalBase.h index 7c22b739687..beba3c42616 100644 --- a/src/DataTypes/DataTypeDecimalBase.h +++ b/src/DataTypes/DataTypeDecimalBase.h @@ -156,15 +156,15 @@ inline const DataTypeDecimalBase * checkDecimalBase(const IDataType & data_ty template <> constexpr size_t DataTypeDecimalBase::maxPrecision() { return 9; }; template <> constexpr size_t DataTypeDecimalBase::maxPrecision() { return 18; }; -template <> constexpr size_t DataTypeDecimalBase::maxPrecision() { return 38; }; -template <> constexpr size_t DataTypeDecimalBase::maxPrecision() { return 16; }; template <> constexpr size_t DataTypeDecimalBase::maxPrecision() { return 18; }; +template <> constexpr size_t DataTypeDecimalBase::maxPrecision() { return 38; }; +template <> constexpr size_t DataTypeDecimalBase::maxPrecision() { return 76; }; extern template class DataTypeDecimalBase; extern template class DataTypeDecimalBase; +extern template class DataTypeDecimalBase; extern template class DataTypeDecimalBase; extern template class DataTypeDecimalBase; -extern template class DataTypeDecimalBase; template