belugabehr
belugabehr
@Fokko @gszadovszky What are your thoughts on this and moving it forward?
@gszadovszky Ya. I did discover that this is a bit more tricky than I had anticipated. My expectation was that ByteBuffers were handled the same way as there are defined...
@Fokko Some discussion related to this topic going on with PARQUET-1758 I think the general idea is that all test-related logging is DEBUG level. If a test fails, users can...
@HunterL OK, so I've been recently diving into Java NIO a bit and let me add some thoughts that relate to this task: Please change the naming convention and drop...
Also requires unit tests.
Here are a couple of starters: ``` private final ByteBuffer oneByteBuffer = ByteBuffer.allocate(1); @Override public int read() throws IOException { int read = this.channel.read(this.oneByteBuffer.rewind()); if (read < 0) { return...
``` Eclipse IDE for Java Developers Version: 2019-06 (4.12.0) Build id: 20190614-1200 ```
It builds OK on the command line, but Eclipse is tripped up by it for some reason.
Fixed by adding: ``` 3.11.4 true ```
Hold off on this one for right now, the JMH tests are not as favorable as I was expecting. I need to review the tests.