We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
这个异常我看之前也有人提到过,但是没确定根因。 当使用场景是重复使用一个preparedstatement时,可能会有这种调用顺序 1.ColumnWriterBuffer invoke buffer.limit(buffer.position()); : 2.ByteArrayWriter invoke writeBinary(byte byt): 由于第二步未对容量进行校验,第一步的buffer经过limit后,容量可能为0,导致触发这个问题。
paste your error logs here
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Environment
这个异常我看之前也有人提到过,但是没确定根因。
当使用场景是重复使用一个preparedstatement时,可能会有这种调用顺序
1.ColumnWriterBuffer invoke buffer.limit(buffer.position()); :
2.ByteArrayWriter invoke writeBinary(byte byt):
由于第二步未对容量进行校验,第一步的buffer经过limit后,容量可能为0,导致触发这个问题。
Error logs
Steps to reproduce
Other descriptions
The text was updated successfully, but these errors were encountered: