rdsr commented on a change in pull request #211: [Baseline] Apply baseline to
iceberg-orc #158
URL: https://github.com/apache/incubator-iceberg/pull/211#discussion_r292984016
##########
File path: orc/src/main/java/org/apache/iceberg/orc/ORC.java
##########
@@ -124,18 +123,18 @@ private ReadBuilder(InputFile file) {
/**
* Restricts the read to the given range: [start, start + length).
*
- * @param start the start position for this read
- * @param length the length of the range this read should scan
+ * @param newStart the start position for this read
+ * @param newLength the length of the range this read should scan
* @return this builder for method chaining
*/
- public ReadBuilder split(long start, long length) {
- this.start = start;
- this.length = length;
+ public ReadBuilder split(long newStart, long newLength) {
+ this.start = newStart;
+ this.length = newLength;
return this;
}
- public ReadBuilder schema(org.apache.iceberg.Schema schema) {
- this.schema = schema;
+ public ReadBuilder schema(org.apache.iceberg.Schema projectedSchema) {
Review comment:
fixed
----------------------------------------------------------------
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]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]