This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 399408cb27 GH-42039: [Docs][Go] Fix broken link (#42040)
399408cb27 is described below
commit 399408cb273c47f490f65cdad95bc184a652826c
Author: Hyunseok Seo <[email protected]>
AuthorDate: Sun Jun 9 14:50:25 2024 +0900
GH-42039: [Docs][Go] Fix broken link (#42040)
### Rationale for this change
Fix the broken link to the correct link due to a change in the path.
### What changes are included in this PR?
Updating link from the incorrect `go/` path to change in the path.
- old link:
https://arrow.apache.org/adbc/main/driver/go/flight_sql.html#client-options
- new link:
https://arrow.apache.org/adbc/main/driver/flight_sql.html#client-options
### Are these changes tested?
Yes. I have checked the link.
### Are there any user-facing changes?
Yes, the updated link will be visible to users.
* GitHub Issue: #42039
Authored-by: Hyunseok Seo <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
go/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/go/README.md b/go/README.md
index 4f97c49e1c..220b0a230a 100644
--- a/go/README.md
+++ b/go/README.md
@@ -48,7 +48,7 @@ func main() {
DSN option keys are expressed as `k=v`, delimited with `;`.
Some options keys are defined in ADBC, others are defined in the FlightSQL
ADBC driver.
-- Arrow ADBC [developer
doc](https://arrow.apache.org/adbc/main/driver/go/flight_sql.html#client-options)
+- Arrow ADBC [developer
doc](https://arrow.apache.org/adbc/main/driver/flight_sql.html#client-options)
- ADBC [source
code](https://github.com/apache/arrow-adbc/blob/3d12fad1bae21029a8ff25604d6e65760c3f65bd/go/adbc/adbc.go#L149-L158)
- FlightSQL driver option keys [source
code](https://github.com/apache/arrow-adbc/blob/3d12fad1bae21029a8ff25604d6e65760c3f65bd/go/adbc/driver/flightsql/flightsql_adbc.go#L70-L81)