This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new c282a4ce8 fix(docs): update go install command in flight sql recipe
(#2798)
c282a4ce8 is described below
commit c282a4ce8043308ba353cad3846730047f275335
Author: Bryce Mecum <[email protected]>
AuthorDate: Thu May 8 07:42:00 2025 -0700
fix(docs): update go install command in flight sql recipe (#2798)
The Go Arrow implementation moved out of the mono repo to
apache/arrow-go and this command should be updated to match. The current
command technically still works because `arrow/go` wasn't pulled from
gopkgs but I think using the new `arrow-go` repo is better. I've tested
the go install command still works.
---
docs/source/python/recipe/flight_sql.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/source/python/recipe/flight_sql.rst
b/docs/source/python/recipe/flight_sql.rst
index cef2ccecb..d4c2ba1ff 100644
--- a/docs/source/python/recipe/flight_sql.rst
+++ b/docs/source/python/recipe/flight_sql.rst
@@ -24,7 +24,7 @@ SQLite. You can run it yourself as follows:
.. code-block:: shell
- $ go install
github.com/apache/arrow/go/v${ARROW_MAJOR_VERSION}/arrow/flight/flightsql/example/cmd/sqlite_flightsql_server@latest
+ $ go install
github.com/apache/arrow-go/v${ARROW_MAJOR_VERSION}/arrow/flight/flightsql/example/cmd/sqlite_flightsql_server@latest
$ sqlite_flightsql_server -host 0.0.0.0 -port 8080
Other recipes work using the OSS version of Dremio_: