From 47807c25f1aeba41bf11857b95bc443757bd7320 Mon Sep 17 00:00:00 2001 From: Christian Beikov Date: Thu, 4 Feb 2021 00:07:31 +0100 Subject: [PATCH] Don't use prepared statement cache for PostgreSQL in matrix test --- databases/pgsql/resources/hibernate.properties | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/databases/pgsql/resources/hibernate.properties b/databases/pgsql/resources/hibernate.properties index 235401ef83..54002bd447 100644 --- a/databases/pgsql/resources/hibernate.properties +++ b/databases/pgsql/resources/hibernate.properties @@ -7,7 +7,8 @@ hibernate.dialect org.hibernate.dialect.PostgreSQL94Dialect hibernate.connection.driver_class org.postgresql.Driver -hibernate.connection.url jdbc:postgresql:hibernate_orm_test +hibernate.connection.url jdbc:postgresql://192.168.99.100:5432/hibernate_orm_test?preparedStatementCacheQueries=0 +#hibernate.connection.url jdbc:postgresql://localhost:5432/hibernate_orm_test?preparedStatementCacheQueries=0 hibernate.connection.username hibernate_orm_test hibernate.connection.password hibernate_orm_test