This is an automated email from the ASF dual-hosted git repository.
ianmcook pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-experiments.git
The following commit(s) were added to refs/heads/main by this push:
new 2ebd9d7 Improve C++ client example README (#2)
2ebd9d7 is described below
commit 2ebd9d7304499cd7104cb2d4891e513c3704e4a3
Author: Ian Cook <[email protected]>
AuthorDate: Mon Mar 4 15:04:17 2024 -0500
Improve C++ client example README (#2)
---
http/get_simple/cpp/client/README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/http/get_simple/cpp/client/README.md
b/http/get_simple/cpp/client/README.md
index a7c993c..7d36dd0 100644
--- a/http/get_simple/cpp/client/README.md
+++ b/http/get_simple/cpp/client/README.md
@@ -31,4 +31,5 @@ clang++ client.cpp -std=c++17 $(pkg-config --cflags --libs
arrow libcurl) -o cli
./client
```
-This example requires version 15.0.0 or higher of the Arrow C++ library.
+> [!NOTE]
+> The example here requires version 15.0.0 or higher of the Arrow C++ library
because of a bug ([#39163](https://github.com/apache/arrow/issues/39163)) that
existed in earlier versions. If you must use an earlier version of the Arrow
C++ library, it is possible to implement an HTTP client by using
`arrow::ipc::RecordBatchStreamReader` instead of `arrow::ipc::StreamDecoder`.
See [this
example](https://github.com/apache/arrow/pull/39081/commits/3b937b98295b5dd4f9e297a865a9303a317c9983)
for [...]