zeroshade commented on code in PR #34454:
URL: https://github.com/apache/arrow/pull/34454#discussion_r1131366885
##########
go/arrow/internal/testing/types/extension_types.go:
##########
@@ -18,20 +18,172 @@
package types
import (
+ "bytes"
"encoding/binary"
"fmt"
"reflect"
+ "strings"
+
+ "github.com/goccy/go-json"
"github.com/apache/arrow/go/v12/arrow"
"github.com/apache/arrow/go/v12/arrow/array"
+ "github.com/google/uuid"
"golang.org/x/xerrors"
)
+type UUIDBuilder struct {
+ *array.ExtensionBuilder
+ dtype *UUIDType
Review Comment:
So that was actually found by the Go build failing, and I saw it by looking
at the log file for the failing Go workflows.
You can also run the linters (or most of the workflows) by following the
instructions here:
https://arrow.apache.org/docs/developers/continuous_integration/archery.html to
install the `archery` utility in the repo and then running `archery docker run
<job>` as described
[here](https://arrow.apache.org/docs/developers/continuous_integration/docker.html).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]