-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.patch
37 lines (32 loc) · 1.41 KB
/
config.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
diff --git a/hibernate-core/src/test/resources/hibernate.properties b/hibernate-core/src/test/resources/hibernate.properties
index de12583ef4..d6cfac6674 100644
--- a/hibernate-core/src/test/resources/hibernate.properties
+++ b/hibernate-core/src/test/resources/hibernate.properties
@@ -5,15 +5,15 @@
# See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
#
-hibernate.dialect @db.dialect@
-hibernate.connection.driver_class @jdbc.driver@
-hibernate.connection.url @jdbc.url@
-hibernate.connection.username @jdbc.user@
-hibernate.connection.password @jdbc.pass@
+hibernate.dialect org.hibernate.dialect.PostgreSQL94Dialect
+hibernate.connection.driver_class org.postgresql.Driver
+hibernate.connection.url jdbc:postgresql:foo_db
+hibernate.connection.username foo_usr
+hibernate.connection.password foo
hibernate.connection.pool_size 5
-hibernate.show_sql false
+hibernate.show_sql true
hibernate.format_sql true
hibernate.max_fetch_depth 5
@@ -21,7 +21,5 @@ hibernate.max_fetch_depth 5
hibernate.cache.region_prefix hibernate.test
hibernate.cache.region.factory_class org.hibernate.testing.cache.CachingRegionFactory
-javax.persistence.validation.mode=NONE
hibernate.service.allow_crawling=false
-hibernate.session.events.log=true
-hibernate.hql.bulk_id_strategy.global_temporary.drop_tables=true
\ No newline at end of file
+hibernate.session.events.log=true
\ No newline at end of file