From 37c8389bdc8013b61502d6b94e74840a8f95450e Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Wed, 8 Feb 2023 11:17:31 +0100 Subject: [PATCH] Fixed Hibernate dialect --- src/main/resources/META-INF/persistence.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/META-INF/persistence.xml b/src/main/resources/META-INF/persistence.xml index bfaf5ef4..3b2b5f4b 100755 --- a/src/main/resources/META-INF/persistence.xml +++ b/src/main/resources/META-INF/persistence.xml @@ -26,7 +26,7 @@ <class>no.nibio.vips.logic.messaging.MessageNotificationSubscription</class> <exclude-unlisted-classes>false</exclude-unlisted-classes> <properties> - <property name="hibernate.dialect" value="org.hibernate.spatial.dialect.postgis.PostgisDialect"/> + <property name="hibernate.dialect" value="org.hibernate.spatial.dialect.postgis.PostgisPG95Dialect"/> </properties> </persistence-unit> </persistence> -- GitLab