disq commented on code in PR #34631:
URL: https://github.com/apache/arrow/pull/34631#discussion_r1153822244
##########
go/arrow/table.go:
##########
@@ -42,20 +43,19 @@ type Table interface {
// To get strongly typed data from a Column, you need to iterate the
// chunks and type assert each individual Array. For example:
//
-// switch column.DataType().ID {
-// case arrow.INT32:
-// for _, c := range column.Data().Chunks() {
-// arr := c.(*array.Int32)
-// // do something with arr
-// }
-// case arrow.INT64:
-// for _, c := range column.Data().Chunks() {
-// arr := c.(*array.Int64)
-// // do something with arr
-// }
-// case ...
+// switch column.DataType().ID {
Review Comment:
This block was formatted 'badly' according to `goimports`?
--
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]