[ 
https://issues.apache.org/jira/browse/ARROW-13984?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17426314#comment-17426314
 ] 

Matthew Topol commented on ARROW-13984:
---------------------------------------

[[email protected]] as long as you are in a module (a directory that has a go.mod 
or whose parent up the chain has a go.mod, you can create a module by running 
`go mod init <package name>` in a directory) you should be able to run `go get 
github.com/apache/arrow/go/parquet` to download the parquet package.

After that, you'll need to use a replace directive in order to test my branch 
with the reader which you can do by running `go mod edit 
-replace=github.com/apache/arrow/go/parquet=github.com/zeroshade/arrow/go/parquet@goparquet-file`
 i believe. After that you should be able to just import it normally in a .go 
file by using `import "github.com/apache/arrow/go/parquet"` and so on. Let me 
know if you run into any issues.

> [Go][Parquet] Add File Package - readers
> ----------------------------------------
>
>                 Key: ARROW-13984
>                 URL: https://issues.apache.org/jira/browse/ARROW-13984
>             Project: Apache Arrow
>          Issue Type: Sub-task
>          Components: Go, Parquet
>            Reporter: Matthew Topol
>            Assignee: Matthew Topol
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 7.5h
>  Remaining Estimate: 0h
>
> Add the package for manipulating files directly, column reader/writer, file 
> reader/writer



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to