Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/.licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ header:
- 'LICENSE'
- 'NOTICE'
- 'src/iceberg/expected.h'
- 'src/iceberg/util/murmurhash3_internal.*'

comment: on-failure
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -254,3 +254,16 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

--------------------------------------------------------------------------------

The file src/iceberg/murmur3_internal.h contains code adapted from

https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.h

The file src/iceberg/murmur3_internal.cc contains code adapted from

https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp

MurmurHash3 was written by Austin Appleby, and is placed in the public
domain. The author disclaims copyright to this source code.
5 changes: 5 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ The Apache Software Foundation (http://www.apache.org/).
This product includes code from zeus-cpp
* Copyright (c) 2024 zeus-cpp
* https://github.com/zeus-cpp/expected

This product includes code from smhasher
* MurmurHash3 was written by Austin Appleby, and is placed in the public
* domain. The author hereby disclaims copyright to this source code.
* https://github.com/aappleby/smhasher
7 changes: 4 additions & 3 deletions src/iceberg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,20 @@ set(ICEBERG_SOURCES
arrow_c_data_internal.cc
demo.cc
json_internal.cc
partition_field.cc
partition_spec.cc
schema.cc
schema_field.cc
schema_internal.cc
partition_field.cc
partition_spec.cc
snapshot.cc
sort_field.cc
sort_order.cc
statistics_file.cc
table_metadata.cc
transform.cc
transform_function.cc
type.cc
snapshot.cc)
util/murmurhash3_internal.cc)

set(ICEBERG_STATIC_BUILD_INTERFACE_LIBS)
set(ICEBERG_SHARED_BUILD_INTERFACE_LIBS)
Expand Down
Loading
Loading