You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/05/06 19:46:57 UTC

[arrow] branch master updated: ARROW-16494: [C++] Add missing include that is making some packaging jobs fail

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 20d7e6f54d ARROW-16494: [C++] Add missing include that is making some packaging jobs fail
20d7e6f54d is described below

commit 20d7e6f54d7dfe2158cd97fd4401e169eae6f189
Author: Raúl Cumplido <ra...@gmail.com>
AuthorDate: Sat May 7 04:46:42 2022 +0900

    ARROW-16494: [C++] Add missing include that is making some packaging jobs fail
    
    This PR tries to fix the issue that has been raised on some packaging builds like:
    - [conda-linux-gcc-py310-cuda](https://github.com/ursacomputing/crossbow/runs/6321523101)
    - [conda-linux-gcc-py310-ppc64le](https://github.com/ursacomputing/crossbow/runs/6321445819)
    - [conda-linux-gcc-py37-arm64](https://github.com/ursacomputing/crossbow/runs/6322824420)
    - [conda-linux-gcc-py37-cpu-r40](https://github.com/ursacomputing/crossbow/runs/6321760095)
    
    Closes #13084 from raulcd/ARROW-16494
    
    Authored-by: Raúl Cumplido <ra...@gmail.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 cpp/src/arrow/dataset/file_csv.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cpp/src/arrow/dataset/file_csv.cc b/cpp/src/arrow/dataset/file_csv.cc
index d185edf49d..d4e0af7808 100644
--- a/cpp/src/arrow/dataset/file_csv.cc
+++ b/cpp/src/arrow/dataset/file_csv.cc
@@ -19,6 +19,7 @@
 
 #include <algorithm>
 #include <memory>
+#include <sstream>
 #include <string>
 #include <unordered_set>
 #include <utility>