This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new 2e977a2 ARROW-9125: [C++] Add missing include for
arrow::internal::ZeroMemory() for Valgrind
2e977a2 is described below
commit 2e977a2949c67f610d19cafcb8007e2ccaba5413
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sun Jun 14 09:21:00 2020 +0900
ARROW-9125: [C++] Add missing include for arrow::internal::ZeroMemory() for
Valgrind
Closes #7429 from kou/cpp-valgrind-missing-include
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
cpp/src/arrow/compute/exec.cc | 1 +
1 file changed, 1 insertion(+)
diff --git a/cpp/src/arrow/compute/exec.cc b/cpp/src/arrow/compute/exec.cc
index c5581bf..e6f648a 100644
--- a/cpp/src/arrow/compute/exec.cc
+++ b/cpp/src/arrow/compute/exec.cc
@@ -33,6 +33,7 @@
#include "arrow/compute/function.h"
#include "arrow/compute/kernel.h"
#include "arrow/compute/registry.h"
+#include "arrow/compute/util_internal.h"
#include "arrow/datum.h"
#include "arrow/scalar.h"
#include "arrow/status.h"