Skip to content

Commit

Permalink
Fix link error on Windows for hash join benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
zanmato1984 committed Feb 20, 2025
1 parent 492b429 commit c6460ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/src/arrow/acero/accumulation_queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ using arrow::compute::ExecBatch;

/// \brief A container that accumulates batches until they are ready to
/// be processed.
class AccumulationQueue {
class ARROW_ACERO_EXPORT AccumulationQueue {
public:
AccumulationQueue() : row_count_(0) {}
~AccumulationQueue() = default;
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/arrow/acero/hash_join.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace acero {

using util::AccumulationQueue;

class HashJoinImpl {
class ARROW_ACERO_EXPORT HashJoinImpl {
public:
using OutputBatchCallback = std::function<Status(int64_t, ExecBatch)>;
using BuildFinishedCallback = std::function<Status(size_t)>;
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/arrow/acero/swiss_join_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class RowArrayAccessor {
// Read operations (row comparison, column decoding)
// can be called by multiple threads concurrently.
//
struct RowArray {
struct ARROW_ACERO_EXPORT RowArray {
RowArray() : is_initialized_(false), hardware_flags_(0) {}

Status InitIfNeeded(MemoryPool* pool, int64_t hardware_flags, const ExecBatch& batch);
Expand Down

0 comments on commit c6460ac

Please sign in to comment.