Skip to content

Commit b704e31

Browse files
committed
put stub PostgreSQL10Dialect back where it belongs
1 parent 64d0cf8 commit b704e31

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* Hibernate, Relational Persistence for Idiomatic Java
3+
*
4+
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
5+
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
6+
*/
7+
package org.hibernate.dialect;
8+
9+
/**
10+
* An SQL dialect for Postgres 10 and later.
11+
*
12+
* @deprecated use {@code PostgreSQLDialect(1000)}
13+
*/
14+
@Deprecated
15+
public class PostgreSQL10Dialect extends PostgreSQLDialect {
16+
17+
public PostgreSQL10Dialect() {
18+
super( DatabaseVersion.make( 10 ) );
19+
}
20+
21+
}
22+

0 commit comments

Comments
 (0)