[
https://issues.apache.org/jira/browse/PARQUET-1893?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17219044#comment-17219044
]
ASF GitHub Bot commented on PARQUET-1893:
-----------------------------------------
gszadovszky merged pull request #807:
URL: https://github.com/apache/parquet-mr/pull/807
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
> H2SeekableInputStream readFully() doesn't respect start and len
> ----------------------------------------------------------------
>
> Key: PARQUET-1893
> URL: https://issues.apache.org/jira/browse/PARQUET-1893
> Project: Parquet
> Issue Type: Bug
> Components: parquet-mr
> Reporter: Xinli Shang
> Assignee: Xinli Shang
> Priority: Major
>
> The readFully() throws away the parameters 'start' and 'len' as shown below.
> public void readFully(byte[] bytes, int start, int len) throws IOException {
> stream.readFully(bytes);
> }
> It should be corrected as below.
> public void readFully(byte[] bytes, int start, int len) throws IOException {
> stream.readFully(bytes, start, len);
> }
> H1SeekableInputStream() has been fixed.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)