Merge remote-tracking branch 'upstream/main' into wip/6.0

This commit is contained in:
Andrea Boriero 2021-08-23 15:05:28 +02:00
commit 6011421fb7
2 changed files with 29 additions and 2 deletions

View File

@ -9,12 +9,12 @@
// use. In that respect it serves a role similar to <dependencyManagement> in Maven
ext {
junitVersion = '4.13'
junitVersion = '4.13.2'
junitVintageVersion = '5.7.1'
junit5Version = '5.7.1'
h2Version = '1.4.200'
bytemanVersion = '4.0.13' //Compatible with JDK16
bytemanVersion = '4.0.16' //Compatible with JDK16
jnpVersion = '5.0.6.CR1'
hibernateCommonsVersion = '5.1.2.Final'

View File

@ -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;
}
}