Skip to content

Commit 2f914a4

Browse files
committed
remove obsolete comment about HSQLDB in jdoc of LockingStrategy
1 parent eb47e6b commit 2f914a4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

hibernate-core/src/main/java/org/hibernate/dialect/lock/LockingStrategy.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@
1010
/**
1111
* A strategy abstraction for how locks are obtained in the underlying database.
1212
* <p>
13-
* All locking provided implementations assume the underlying database supports
14-
* (and that the connection is in) at least read-committed transaction isolation.
15-
* The most glaring exclusion to this is HSQLDB which only offers support for
16-
* READ_UNCOMMITTED isolation.
13+
* All built-in implementations assume the underlying database supports at least
14+
* {@linkplain java.sql.Connection#TRANSACTION_READ_COMMITTED read-committed}
15+
* transaction isolation, and that the JDBC connection was obtained with at least
16+
* this isolation level.
1717
*
1818
* @see org.hibernate.dialect.Dialect#getLockingStrategy
19+
* @see org.hibernate.cfg.JdbcSettings#ISOLATION
1920
* @since 3.2
2021
*
2122
* @author Steve Ebersole

0 commit comments

Comments
 (0)