Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleFileRecords open
    /**
     * Allows to limit the batches on the file record in bytes
     */
    public static FileRecords open(File file, int end) throws IOException {
        FileChannel channel = openChannel(file, false, false, 0, false);
        return new FileRecords(file, channel, 0, end, false);
    }


  • The code changes can be seen here in the open PR

Compatibility, Deprecation, and Migration Plan

...