jackjlli opened a new pull request #5343: URL: https://github.com/apache/incubator-pinot/pull/5343
It seems that compiling the code with SDK 9+ in a JDK 8 JVM will produce a `NoSuchMethodError`. This can be reproduced by running any integration tests locally. Casting ByteBuffer to Buffer for the following methods fixes the issue: ``` position(int) limit(int) mark() reset() clear() flip() rewind() ``` Similar issue from other repo: https://github.com/eclipse/jetty.project/issues/3244 ---------------------------------------------------------------- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
