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 179d02885 chore(go/adbc): bump arrow from v16 to v17 in template
(#1880)
179d02885 is described below
commit 179d02885548895297fe5e1adda8c835fbfe8fd2
Author: Cocoa <[email protected]>
AuthorDate: Wed May 22 15:18:23 2024 +0100
chore(go/adbc): bump arrow from v16 to v17 in template (#1880)
Hi, this PR should be a minor update for the go driver template which
bumps arrow from v16 to v17.
---
go/adbc/pkg/_tmpl/driver.go.tmpl | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/go/adbc/pkg/_tmpl/driver.go.tmpl b/go/adbc/pkg/_tmpl/driver.go.tmpl
index 21a9e0919..5a071ea83 100644
--- a/go/adbc/pkg/_tmpl/driver.go.tmpl
+++ b/go/adbc/pkg/_tmpl/driver.go.tmpl
@@ -59,10 +59,10 @@ import (
"unsafe"
"github.com/apache/arrow-adbc/go/adbc"
- "github.com/apache/arrow/go/v16/arrow/array"
- "github.com/apache/arrow/go/v16/arrow/cdata"
- "github.com/apache/arrow/go/v16/arrow/memory"
- "github.com/apache/arrow/go/v16/arrow/memory/mallocator"
+ "github.com/apache/arrow/go/v17/arrow/array"
+ "github.com/apache/arrow/go/v17/arrow/cdata"
+ "github.com/apache/arrow/go/v17/arrow/memory"
+ "github.com/apache/arrow/go/v17/arrow/memory/mallocator"
)
// Must use malloc() to respect CGO rules