All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.data.r2dbc.dialect.H2Dialect Maven / Gradle / Ivy

There is a newer version: 4.8.8.7
Show newest version
package org.springframework.data.r2dbc.dialect;

import org.springframework.data.relational.core.sql.SqlIdentifier;

/**
 * An SQL dialect for H2 in Postgres Compatibility mode.
 *
 * @author Mark Paluch
 * @author Jens Schauder
 */
public class H2Dialect extends PostgresDialect {

	/**
	 * Singleton instance.
	 */
	public static final H2Dialect INSTANCE = new H2Dialect();

	@Override
	public String renderForGeneratedValues(SqlIdentifier identifier) {
		return identifier.getReference(getIdentifierProcessing());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy