put stub PostgreSQL10Dialect back where it belongs

This commit is contained in:
Gavin 2022-12-20 22:06:22 +01:00 committed by Gavin King
parent 64d0cf804a
commit b704e3154e
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
/*
* 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 Postgres 10 and later.
*
* @deprecated use {@code PostgreSQLDialect(1000)}
*/
@Deprecated
public class PostgreSQL10Dialect extends PostgreSQLDialect {
public PostgreSQL10Dialect() {
super( DatabaseVersion.make( 10 ) );
}
}