You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I faced this when I tried to implement batch inserts in my application and I was using a connection pool (without the pool setting it works perfectly fine).
This is the output using Hikari 2.6.0 and H2 1.4.192. H2FailedTest.txt
If I use Hikari 2.3.13 (like rxjava-jdbc project does) it still fails. Seems like the pool is shut down after the batch insert due to a failure at trying to close the connection.
This is the output if I replace H2 for HSQLDB 2.3.2 by replacing the url for this "jdbc:hsqldb:mem:aname;user=user;" :
I faced this when I tried to implement batch inserts in my application and I was using a connection pool (without the pool setting it works perfectly fine).
It is fairly easy to reproduce using this test:
This is the output using Hikari 2.6.0 and H2 1.4.192.
H2FailedTest.txt
If I use Hikari 2.3.13 (like rxjava-jdbc project does) it still fails. Seems like the pool is shut down after the batch insert due to a failure at trying to close the connection.
This is the output if I replace H2 for HSQLDB 2.3.2 by replacing the url for this "jdbc:hsqldb:mem:aname;user=user;" :
HSQLDBFailedTest.txt
Is there something I am not taking into account?
The text was updated successfully, but these errors were encountered: