Skip to content

Commit fe764af

Browse files
committed
chore: add license
1 parent 18978c6 commit fe764af

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

LICENSE

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,3 +253,17 @@ https://github.com/apache/arrow/blob/main/cpp/src/arrow/visit_type_inline.h
253253
Copyright: 2016-2025 The Apache Software Foundation.
254254
Home page: https://arrow.apache.org/
255255
License: 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

src/iceberg/expression/decimal.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
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>

src/iceberg/expression/decimal.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
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>

0 commit comments

Comments
 (0)