-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Errors when cachePreparedStatements is set to true
#527
Comments
@max-grigoriev can you provide a reproducer project ? |
I'm not sure if it's related to
eclipse-vertx/vertx-sql-client#590, would you
like to try 3.9.1-SNAPSHOT and see if the problem still happens?
…On Tue, May 12, 2020 at 10:58 PM Julien Viet ***@***.***> wrote:
@max-grigoriev <https://github.com/max-grigoriev> can you provide a
reproducer project ?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#527 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJV4JKDYHZAPZIQCIUN4N3RRFPX5ANCNFSM4M6YYVQA>
.
|
I can't reproduce this issue in
Do you have ETA for 3.9.1? |
The artifacts should be staged in these two days soon. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Vertx version: 3.9.0
Postgres: 9.6 (11.1)
JDK: Correto 11.0.7
When I enable prepared statement cache I received errors in my integration tests
io.vertx.pgclient.PgException: prepared statement "0000001" does not exist
The problem is discovered when we run a couple of similar queries at the same time and then try to execute another one:
when I change
Flux.merge
toFlux.concat
and queries run one by one then everything is OK.The text was updated successfully, but these errors were encountered: