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
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

# Adapted from Apache Iceberg C++
# https://github.com/apache/iceberg-cpp/blob/main/.devcontainer/Dockerfile.template
# https://github.com/apache/iceberg-cpp/blob/v0.2.0/.devcontainer/Dockerfile.template

# This Dockerfile is used to build a development container for Paimon C++.
# It is based on the Ubuntu image and installs necessary dependencies.
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

// Adapted from Apache Iceberg C++
// https://github.com/apache/iceberg-cpp/blob/main/.devcontainer/devcontainer.json.template
// https://github.com/apache/iceberg-cpp/blob/v0.2.0/.devcontainer/devcontainer.json.template

{
"name": "Paimon CPP Dev Container",
Expand Down
15 changes: 11 additions & 4 deletions .github/.rat-excludes
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
build/*
build-debug/*
build-release/*
_build
test_data/*
third_party/*
build_support/*
scripts/*
cmake_modules/*
xxhash\.c
xxhash\.h
asan_symbolize\.py
fix_includes\.py
lint_exclusions\.txt
iwyu_tool\.py
arrow\.diff
jieba\.diff
orc\.diff
licenses/*
.codespell_ignore
.gitignore
rat-report.txt
Expand Down
3 changes: 0 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
# limitations under the License.
################################################################################

# Adapted from Apache Paimon
# https://github.com/apache/paimon/blob/master/.github/ISSUE_TEMPLATE/bug-report.yml

name: Bug report
description: Problems with the software
title: "[Bug] "
Expand Down
3 changes: 0 additions & 3 deletions .github/ISSUE_TEMPLATE/feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
# limitations under the License.
################################################################################

# Adapted from Apache Paimon
# https://github.com/apache/paimon/blob/master/.github/ISSUE_TEMPLATE/feature.yml

name: Feature
description: Add new feature, improve code, and more
title: "[Feature] "
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

# Adapted from Apache Iceberg C++
# https://github.com/apache/iceberg-cpp/blob/main/.pre-commit-config.yaml
# https://github.com/apache/iceberg-cpp/blob/v0.2.0/.pre-commit-config.yaml

# To use this, install the python package `pre-commit` and
# run once `pre-commit install`. This will setup a git pre-commit-hook
Expand Down
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Adapted from Apache Arrow:
# https://github.com/apache/arrow/blob/apache-arrow-17.0.0/cpp/CMakeLists.txt

cmake_minimum_required(VERSION 3.16)
message(STATUS "Building using CMake version: ${CMAKE_VERSION}")

Expand Down
Loading