Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update feature branch #76

Merged
merged 30 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4693e29
bump kernel to v0.2.0
samansmink Jul 19, 2024
7279b4f
add new return type to msvc workaround struct
samansmink Jul 19, 2024
163d65e
Merge pull request #57 from samansmink/bump-to-delta-kernel-v0.2.0
samansmink Jul 19, 2024
34bb7fe
add basic benchmarking suite
samansmink Jul 24, 2024
70aec0c
small tweaks to benchmark readme and makefile
samansmink Jul 24, 2024
628c5ad
fix accidentally borking `make`
samansmink Jul 24, 2024
f5a94a4
Merge pull request #60 from samansmink/add-benchmarking-suite
samansmink Jul 24, 2024
cfdba36
small fix to build_benchmark
samansmink Jul 24, 2024
8c69cd9
Merge pull request #61 from samansmink/fix-benchmark-build
samansmink Jul 25, 2024
fb18510
uptream change
stephaniewang526 Jul 26, 2024
c639c0c
Merge branch 'main' into v1.0.0
stephaniewang526 Jul 26, 2024
5084e58
chore: tidy up README and make cloud documentation more agnostic
gdubya Jul 31, 2024
18fd5dc
fix incorrectly mapping timestamp types
samansmink Aug 1, 2024
d320bb2
fix incorrect column mapping for delta constant columns
samansmink Aug 1, 2024
55f28b4
Merge pull request #67 from gdubya/update-cloud-readme
samansmink Aug 1, 2024
47724ba
Merge pull request #62 from motherduckdb/v1.0.0
samansmink Aug 1, 2024
6de941e
fix blob type
samansmink Aug 1, 2024
fa8a295
Merge pull request #68 from samansmink/fix-incorrect-timestamp-map
samansmink Aug 1, 2024
e0af7f6
Merge pull request #69 from samansmink/fix-blob-type
samansmink Aug 1, 2024
3a764c2
add delta-rs based generation script
samansmink Aug 7, 2024
192598a
Merge branch 'main' into feature
samansmink Aug 7, 2024
247ec39
bump duckdb
samansmink Aug 28, 2024
8ebb0e3
fix core ext test dependencies
samansmink Aug 28, 2024
4206d61
add missing dependency for aws
samansmink Aug 28, 2024
a35f87d
add missing windows system lib
samansmink Aug 29, 2024
1d08718
try with openssl from vcpkg
samansmink Aug 29, 2024
262af98
fix change secret manager behaviour
samansmink Aug 29, 2024
c5d490b
skip test for now
samansmink Aug 30, 2024
5a97980
fix openssl path
samansmink Aug 30, 2024
bdd8f26
run only tests from this repo for cloud tests
samansmink Aug 30, 2024
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
GIT_REPOSITORY "https://github.com/delta-incubator/delta-kernel-rs"
# WARNING: the FFI headers are currently pinned due to the C linkage issue of the c++ headers. Currently, when bumping
# the kernel version, the produced header in ./src/include/delta_kernel_ffi.hpp should be also bumped, applying the fix
GIT_TAG ed2b80b127984481adba8e59879f39b9e5f871d1
GIT_TAG v0.2.0
# Prints the env variables passed to the cargo build to the terminal, useful in debugging because passing them
# through CMake is an error-prone mess
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E env ${RUST_UNSET_ENV_VARS} ${RUST_ENV_VARS} env
Expand Down
2 changes: 1 addition & 1 deletion src/functions/delta_scan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static void visit_callback(ffi::NullableCvoid engine_context, struct ffi::Kernel
context->metadata.back()->partition_map = std::move(constant_map);
}

static void visit_data(void *engine_context, ffi::EngineData* engine_data, const struct ffi::KernelBoolSlice selection_vec) {
static void visit_data(void *engine_context, ffi::ExclusiveEngineData* engine_data, const struct ffi::KernelBoolSlice selection_vec) {
ffi::visit_scan_data(engine_data, selection_vec, engine_context, visit_callback);
}

Expand Down
Loading
Loading