Skip to content

Commit 3943248

Browse files
committed
fix cherry pick conflict
1 parent 3ea8a31 commit 3943248

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbms/src/Functions/FunctionsRound.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ template <typename T, RoundingMode rounding_mode, ScaleMode scale_mode, typename
269269
struct DecimalRoundingComputation
270270
{
271271
static_assert(IsDecimal<T>);
272-
using NativeType = T::NativeType;
272+
using NativeType = typename T::NativeType;
273273
static const size_t data_count = 1;
274274
static size_t prepare(size_t scale) { return scale; }
275275
// compute need decimal_scale to interpret decimals

0 commit comments

Comments
 (0)