Skip to content

Commit 7f1dfca

Browse files
authored
fix(go): Use arrow-go in templates instead of arrow/go (apache#2712)
This makes the templates consistent with the generated (then manually edited code).
1 parent bdba2e5 commit 7f1dfca

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

go/adbc/pkg/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616

1717
GO_BUILD=go build
18-
RM=rm
18+
RM=rm -f
1919
ifeq ($(shell go env GOOS),linux)
2020
SUFFIX=so
2121
else ifeq ($(shell go env GOOS),windows)

go/adbc/pkg/_tmpl/driver.go.tmpl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ import (
5959
"unsafe"
6060

6161
"github.com/apache/arrow-adbc/go/adbc"
62-
"github.com/apache/arrow/go/v18/arrow/array"
63-
"github.com/apache/arrow/go/v18/arrow/cdata"
64-
"github.com/apache/arrow/go/v18/arrow/memory"
65-
"github.com/apache/arrow/go/v18/arrow/memory/mallocator"
62+
"github.com/apache/arrow-go/v18/arrow/array"
63+
"github.com/apache/arrow-go/v18/arrow/cdata"
64+
"github.com/apache/arrow-go/v18/arrow/memory"
65+
"github.com/apache/arrow-go/v18/arrow/memory/mallocator"
6666
)
6767

6868
// Must use malloc() to respect CGO rules

0 commit comments

Comments
 (0)