Commits


Oscar Westra van Holthe - Kind authored and GitHub committed 9443fa9b84d
AVRO-3748: [Java] Fix SeekableInput.skip (#2984) * AVRO-3748: Fix SeekableInput.skip Two of the implementations of SeekableInput.skip had a bug: skip was implemented as seek (i.e. using an absolute input position instead of a relative one). This fixes that. * AVRO-3748: Avoid reset+skip confusion