File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,17 +44,15 @@ namespace iceberg {
4444
4545namespace {
4646
47- static constexpr int32_t kMinDecimalBytes = 1 ;
48- static constexpr int32_t kMaxDecimalBytes = 16 ;
47+ constexpr int32_t kMinDecimalBytes = 1 ;
48+ constexpr int32_t kMaxDecimalBytes = 16 ;
4949
5050// The maximum decimal value that can be represented with kMaxPrecision digits.
5151// 10^38 - 1
52- static constexpr Decimal kMaxDecimalValue (5421010862427522170LL , 687399551400673279ULL );
53- // The mininum (most negative) decimal value that can be represented with kMaxPrecision
54- // digits.
52+ constexpr Decimal kMaxDecimalValue (5421010862427522170LL , 687399551400673279ULL );
53+ // The mininum decimal value that can be represented with kMaxPrecision digits.
5554// - (10^38 - 1)
56- static constexpr Decimal kMinDecimalValue (-5421010862427522171LL ,
57- 17759344522308878337ULL );
55+ constexpr Decimal kMinDecimalValue (-5421010862427522171LL , 17759344522308878337ULL );
5856
5957struct DecimalComponents {
6058 std::string_view while_digits;
You can’t perform that action at this time.
0 commit comments