org.hibernate.community.dialect.PostgreSQL92Dialect Maven / Gradle / Ivy
/*
 * 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 .
 */
package org.hibernate.community.dialect;
import org.hibernate.dialect.DatabaseVersion;
/**
 * An SQL dialect for Postgres 9.2 and later,
 * adds support for JSON data type, and IF EXISTS
 * after ALTER TABLE.
 * 
 * @author Mark Robinson
 *
 * @deprecated use {@code PostgreSQLLegacyDialect(920)}
 */
@Deprecated
public class PostgreSQL92Dialect extends PostgreSQLLegacyDialect {
	public PostgreSQL92Dialect() {
		super( DatabaseVersion.make( 9, 2 ) );
	}
}
     © 2015 - 2025 Weber Informatics LLC | Privacy Policy