Merge remote-tracking branch 'upstream/main' into wip/6.0
This commit is contained in:
commit
6011421fb7
|
@ -9,12 +9,12 @@
|
||||||
// use. In that respect it serves a role similar to <dependencyManagement> in Maven
|
// use. In that respect it serves a role similar to <dependencyManagement> in Maven
|
||||||
ext {
|
ext {
|
||||||
|
|
||||||
junitVersion = '4.13'
|
junitVersion = '4.13.2'
|
||||||
junitVintageVersion = '5.7.1'
|
junitVintageVersion = '5.7.1'
|
||||||
junit5Version = '5.7.1'
|
junit5Version = '5.7.1'
|
||||||
|
|
||||||
h2Version = '1.4.200'
|
h2Version = '1.4.200'
|
||||||
bytemanVersion = '4.0.13' //Compatible with JDK16
|
bytemanVersion = '4.0.16' //Compatible with JDK16
|
||||||
jnpVersion = '5.0.6.CR1'
|
jnpVersion = '5.0.6.CR1'
|
||||||
|
|
||||||
hibernateCommonsVersion = '5.1.2.Final'
|
hibernateCommonsVersion = '5.1.2.Final'
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* Hibernate, Relational Persistence for Idiomatic Java
|
||||||
|
*
|
||||||
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||||
|
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||||
|
*/
|
||||||
|
package org.hibernate.dialect;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An SQL dialect for MariaDB 10.6 and later, provides skip locked support.
|
||||||
|
*
|
||||||
|
* @author Christian Beikov
|
||||||
|
*
|
||||||
|
* @deprecated use {@code MariaDBDialect(1060)}
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public class MariaDB106Dialect extends MariaDB103Dialect {
|
||||||
|
|
||||||
|
public MariaDB106Dialect() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean supportsSkipLocked() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue