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
4 changes: 2 additions & 2 deletions cpp/src/arrow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,8 @@ set(ARROW_COMPUTE_SRCS
compute/kernels/vector_selection.cc
compute/kernels/vector_selection_filter_internal.cc
compute/kernels/vector_selection_internal.cc
compute/kernels/vector_selection_take_internal.cc)
compute/kernels/vector_selection_take_internal.cc
compute/kernels/vector_swizzle.cc)

if(ARROW_COMPUTE)
# If libarrow_compute.a is only built, "pkg-config --cflags --libs
Expand Down Expand Up @@ -789,7 +790,6 @@ if(ARROW_COMPUTE)
compute/kernels/vector_select_k.cc
compute/kernels/vector_sort.cc
compute/kernels/vector_statistics.cc
compute/kernels/vector_swizzle.cc
compute/key_hash_internal.cc
compute/key_map_internal.cc
compute/light_array_internal.cc
Expand Down
1 change: 0 additions & 1 deletion cpp/src/arrow/compute/initialize.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ Status RegisterComputeKernels() {
internal::RegisterVectorRunEndDecode(registry);
internal::RegisterVectorPairwise(registry);
internal::RegisterVectorStatistics(registry);
internal::RegisterVectorSwizzle(registry);

// Aggregate functions
internal::RegisterHashAggregateBasic(registry);
Expand Down
1 change: 1 addition & 0 deletions cpp/src/arrow/compute/registry.cc
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ static std::unique_ptr<FunctionRegistry> CreateBuiltInRegistry() {
RegisterDictionaryDecode(registry.get());
RegisterVectorHash(registry.get());
RegisterVectorSelection(registry.get());
RegisterVectorSwizzle(registry.get());

RegisterScalarOptions(registry.get());
RegisterVectorOptions(registry.get());
Expand Down
Loading