-
Notifications
You must be signed in to change notification settings - Fork 3.6k
HHH-17355 Smoothen rough edges with array functions #7480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
23ee740
to
ec0b6e5
Compare
Thanks for your pull request! This pull request appears to follow the contribution rules. › This message was automatically generated. |
hibernate-core/src/main/java/org/hibernate/dialect/function/array/DdlTypeHelper.java
Fixed
Show fixed
Hide fixed
hibernate-core/src/main/java/org/hibernate/dialect/function/array/DdlTypeHelper.java
Fixed
Show fixed
Hide fixed
…plemented on that database
…ecate FunctionRenderingSupport in favor of new FunctionRenderer contract
return getCastTypeName( type, Size.nil(), typeConfiguration ); | ||
} | ||
|
||
public static String getCastTypeName(ReturnableType<?> type, Size size, TypeConfiguration typeConfiguration) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods
} | ||
} | ||
|
||
public static String getCastTypeName(ReturnableType<?> type, TypeConfiguration typeConfiguration) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods
return getCastTypeName( type, Size.nil(), typeConfiguration ); | ||
} | ||
|
||
public static String getCastTypeName(JdbcMappingContainer type, Size size, TypeConfiguration typeConfiguration) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods
return getCastTypeName( (JdbcMappingContainer) type, size, typeConfiguration ); | ||
} | ||
|
||
public static String getCastTypeName(JdbcMappingContainer type, TypeConfiguration typeConfiguration) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods
return getTypeName( type, Size.nil(), typeConfiguration ); | ||
} | ||
|
||
public static String getTypeName(ReturnableType<?> type, Size size, TypeConfiguration typeConfiguration) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods
} | ||
} | ||
|
||
public static String getCastTypeName(JdbcMappingContainer type, SqlAstTranslator<?> walker) { | ||
public static String getTypeName(ReturnableType<?> type, TypeConfiguration typeConfiguration) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods
return getTypeName( type, Size.nil(), typeConfiguration ); | ||
} | ||
|
||
public static String getTypeName(JdbcMappingContainer type, Size size, TypeConfiguration typeConfiguration) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods
return getTypeName( (JdbcMappingContainer) type, size, typeConfiguration ); | ||
} | ||
|
||
public static String getTypeName(JdbcMappingContainer type, TypeConfiguration typeConfiguration) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods
https://hibernate.atlassian.net/browse/HHH-17355