Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacktengg committed Oct 22, 2024
1 parent d9c5c37 commit 379407e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion be/src/vec/aggregate_functions/aggregate_function.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class IColumn;
class IDataType;

struct AggregateFunctionAttr {
bool enable_decimal256 {};
bool enable_decimal256 {false};
};

template <bool nullable, typename ColVecType>
Expand Down
2 changes: 1 addition & 1 deletion be/src/vec/functions/function.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct FuncExprParams;
namespace doris::vectorized {

struct FunctionAttr {
bool enable_decimal256 {};
bool enable_decimal256 {false};
};

#define RETURN_REAL_TYPE_FOR_DATEV2_FUNCTION(TYPE) \
Expand Down

0 comments on commit 379407e

Please sign in to comment.