Skip to content

Commit

Permalink
HHH-16228 Introduce a Dialect wrapper base class
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanne committed Feb 24, 2023
1 parent b3619cc commit 132ac1b
Show file tree
Hide file tree
Showing 2 changed files with 1,603 additions and 4 deletions.
Expand Up @@ -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 );
}

Expand Down Expand Up @@ -1485,7 +1485,7 @@ private boolean sameColumnType(int typeCode1, int typeCode2) {
*
* @see #initDefaultProperties()
*/
public final Properties getDefaultProperties() {
public Properties getDefaultProperties() {
return properties;
}

Expand Down Expand Up @@ -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 );
}

Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 132ac1b

Please sign in to comment.