mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 11:48:18 +00:00
HHH-16228 Introduce a Dialect wrapper base class
This commit is contained in:
parent
b3619cc129
commit
132ac1bd21
@ -766,7 +766,7 @@ public String getCheckCondition(String columnName, long min, long max) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public final void contributeFunctions(FunctionContributions functionContributions) {
|
||||
public void contributeFunctions(FunctionContributions functionContributions) {
|
||||
initializeFunctionRegistry( functionContributions );
|
||||
}
|
||||
|
||||
@ -1485,7 +1485,7 @@ private boolean sameColumnType(int typeCode1, int typeCode2) {
|
||||
*
|
||||
* @see #initDefaultProperties()
|
||||
*/
|
||||
public final Properties getDefaultProperties() {
|
||||
public Properties getDefaultProperties() {
|
||||
return properties;
|
||||
}
|
||||
|
||||
@ -1522,7 +1522,7 @@ public String toString() {
|
||||
// database type mapping support ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@Override
|
||||
public final void contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry) {
|
||||
public void contribute(TypeContributions typeContributions, ServiceRegistry serviceRegistry) {
|
||||
contributeTypes( typeContributions, serviceRegistry );
|
||||
}
|
||||
|
||||
@ -3047,7 +3047,7 @@ public String toQuotedIdentifier(String name) {
|
||||
* @see #openQuote()
|
||||
* @see #closeQuote()
|
||||
*/
|
||||
public final String quote(String name) {
|
||||
public String quote(String name) {
|
||||
if ( name == null ) {
|
||||
return null;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user