Commits


George Godik authored and GitHub committed c5173186bbd
ARROW-17274: [GO] Remove panic from parquet.file.RowGroupReader.Column(index int) (#13767) Remove panic from `parquet.file.RowGroupReader.Column(index int)` - parquet.file.RowGroupReader.Column(index int) panics if the the provided column index is invalid. - Return an error as the rest of the functions in the codebase return an error as well. For example GetColumnPageReader returns (PageReader, error) - fixed usage in tests https://github.com/apache/arrow/blob/master/go/parquet/file/row_group_reader.go#L58 Authored-by: ggodik <ggodik@factset.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>