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
95 changes: 90 additions & 5 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -255,25 +255,110 @@ This product includes code from Apache Arrow.
- include/paimon/status.h
- include/paimon/string_builder.h
- src/paimon/common/utils/status.cpp
* Build support utilities:
* build_support/asan-suppressions.txt
* build_support/get-upstream-commit.sh
* build_support/iwyu/iwyu-filter.awk
* build_support/iwyu/iwyu.sh
* build_support/iwyu/mappings/*.imp
* build_support/lint_exclusions.txt
* build_support/lintutils.py
* build_support/lsan-suppressions.txt
* build_support/run_clang_format.py
* build_support/run_clang_tidy.py
* build_support/sanitizer-disallowed-entries.txt
* build_support/tsan-suppressions.txt
* build_support/ubsan-suppressions.txt
* Build system modules:
* cmake_modules/BuildUtils.cmake
* cmake_modules/DefineOptions.cmake
* cmake_modules/san-config.cmake
* cmake_modules/SetupCxxFlags.cmake
* third-party toolchain and patches:
- cmake_modules/ThirdpartyToolchain.cmake
- cmake_modules/arrow.diff
* third-party toolchain and patches:
- cmake_modules/ThirdpartyToolchain.cmake
- cmake_modules/arrow.diff

Copyright: 2016-2024 The Apache Software Foundation.
Home page: https://arrow.apache.org/
License: https://www.apache.org/licenses/LICENSE-2.0

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

This product includes code from LLVM compiler-rt.

* AddressSanitizer symbolization utility:
* build_support/asan_symbolize.py

Copyright: University of Illinois / LLVM contributors.
License: University of Illinois/NCSA Open Source License.

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

This product includes code from include-what-you-use.

* IWYU driver utility:
* build_support/iwyu/iwyu_tool.py

Copyright: 2003-2010 University of Illinois at Urbana-Champaign.
License: University of Illinois/NCSA Open Source License.

The University of Illinois/NCSA Open Source License

Copyright (c) 2003-2010 University of Illinois at Urbana-Champaign.
All rights reserved.

Developed by:

LLVM Team

University of Illinois at Urbana-Champaign

http://llvm.org

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal with
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimers.

* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimers in the
documentation and/or other materials provided with the distribution.

* Neither the names of the LLVM Team, University of Illinois at
Urbana-Champaign, nor the names of its contributors may be used to
endorse or promote products derived from this Software without specific
prior written permission.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
CONTRIBUTORS 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 WITH THE
SOFTWARE.

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

This product includes code from Apache Kudu / Cloudera build support utilities.

* Test and stacktrace utilities:
* build_support/run-test.sh
* build_support/stacktrace_addr2line.pl

Copyright: 2014 Cloudera, Inc.
License: https://www.apache.org/licenses/LICENSE-2.0

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

This product includes code from Apache ORC.

* ORC patch file:
* cmake_modules/orc.diff
* cmake_modules/orc.diff

Copyright: 2013 and onwards The Apache Software Foundation.
Home page: https://orc.apache.org/
Expand Down Expand Up @@ -309,4 +394,4 @@ 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.

--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
19 changes: 19 additions & 0 deletions build_support/asan-suppressions.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

# Note this file is merely a placeholder that contains no suppressions for now.
# But it may become useful in the future.
Loading