This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-cpp.git
from 823b350 feat(index): introduce Lumina vector index and enable Lucene
builds (#151)
add 2e94a8f chore: clean up license and notice attribution (#153)
No new revisions were added by this update.
Summary of changes:
.devcontainer/Dockerfile.template | 2 +-
.devcontainer/devcontainer.json.template | 2 +-
.github/.rat-excludes | 15 +-
.github/ISSUE_TEMPLATE/bug_report.yaml | 3 -
.github/ISSUE_TEMPLATE/feature.yaml | 3 -
.pre-commit-config.yaml | 2 +-
CMakeLists.txt | 3 +
LICENSE | 240 ++++++----------------
NOTICE | 49 +++--
cmake_modules/BuildUtils.cmake | 2 +-
cmake_modules/DefineOptions.cmake | 2 +-
docs/Makefile | 2 +-
docs/make.bat | 2 +-
docs/source/_static/theme_overrides.css | 2 +-
docs/source/basic_concepts.rst | 2 +-
docs/source/conf.py | 2 +-
docs/source/user_guide/append_only_table.rst | 2 +-
docs/source/user_guide/manifest.rst | 2 +-
docs/source/user_guide/primary_key_table.rst | 2 +-
docs/source/user_guide/schema.rst | 2 +-
docs/source/user_guide/snapshot.rst | 2 +-
include/paimon/arrow/abi.h | 2 +-
include/paimon/compare.h | 2 +-
include/paimon/macros.h | 2 +-
include/paimon/status.h | 2 +-
licenses/LICENSE-compiler-rt.txt | 41 ++++
licenses/LICENSE-cppjieba.txt | 20 ++
licenses/LICENSE-leveldb.txt | 27 +++
licenses/LICENSE-llvm-ncsa.txt | 39 ++++
licenses/LICENSE-pytorch.txt | 39 ++++
licenses/LICENSE-xxhash.txt | 26 +++
src/paimon/common/metrics/histogram.h | 1 +
src/paimon/common/metrics/histogram_windowing.h | 1 +
src/paimon/common/utils/preconditions.h | 5 +-
src/paimon/common/utils/rapidjson_util.h | 23 ++-
src/paimon/common/utils/rapidjson_util_test.cpp | 23 ++-
src/paimon/common/utils/status.cpp | 2 +-
src/paimon/common/utils/status_test.cpp | 3 +
src/paimon/format/avro/avro_direct_decoder.cpp | 2 +-
src/paimon/format/avro/avro_direct_decoder.h | 2 +-
src/paimon/format/avro/avro_direct_encoder.cpp | 2 +-
src/paimon/format/avro/avro_direct_encoder.h | 2 +-
src/paimon/format/avro/avro_input_stream_impl.cpp | 2 +-
src/paimon/format/orc/orc_adapter.cpp | 2 +-
src/paimon/format/orc/orc_adapter.h | 2 +-
src/paimon/format/parquet/parquet_schema_util.cpp | 2 +-
src/paimon/format/parquet/parquet_schema_util.h | 2 +-
third_party/download_dependencies.sh | 2 +-
third_party/versions.txt | 2 +-
49 files changed, 369 insertions(+), 254 deletions(-)
create mode 100644 licenses/LICENSE-compiler-rt.txt
create mode 100644 licenses/LICENSE-cppjieba.txt
create mode 100644 licenses/LICENSE-leveldb.txt
create mode 100644 licenses/LICENSE-llvm-ncsa.txt
create mode 100644 licenses/LICENSE-pytorch.txt
create mode 100644 licenses/LICENSE-xxhash.txt