File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -253,3 +253,17 @@ https://github.com/apache/arrow/blob/main/cpp/src/arrow/visit_type_inline.h
253253Copyright: 2016-2025 The Apache Software Foundation.
254254Home page: https://arrow.apache.org/
255255License: https://www.apache.org/licenses/LICENSE-2.0
256+
257+ --------------------------------------------------------------------------------
258+
259+ The file src/iceberg/expression/decimal.h contains code adapted from
260+
261+ https://github.com/apache/arrow/blob/main/cpp/src/arrow/util/decimal.h
262+
263+ The file src/iceberg/expression/decimal.cc contains code adapted from
264+
265+ https://github.com/apache/arrow/blob/main/cpp/src/arrow/util/decimal.cc
266+
267+ Copyright: 2016-2025 The Apache Software Foundation.
268+ Home page: https://arrow.apache.org/
269+ License: https://www.apache.org/licenses/LICENSE-2.0
Original file line number Diff line number Diff line change 1717 * under the License.
1818 */
1919
20+ // / \file iceberg/expression/decimal.cc
21+ // / \brief 128-bit fixed-point decimal numbers.
22+ // / Adapted from Apache Arrow with only Decimal128 support.
23+ // / https://github.com/apache/arrow/blob/main/cpp/src/arrow/util/decimal.cc
24+
2025#include " iceberg/expression/decimal.h"
2126
2227#include < algorithm>
Original file line number Diff line number Diff line change 1919
2020#pragma once
2121
22+ // / \file iceberg/expression/decimal.h
23+ // / \brief 128-bit fixed-point decimal numbers.
24+ // / Adapted from Apache Arrow with only Decimal128 support.
25+ // / https://github.com/apache/arrow/blob/main/cpp/src/arrow/util/decimal.h
26+
2227#include < array>
2328#include < cstdint>
2429#include < iosfwd>
You can’t perform that action at this time.
0 commit comments