We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b02b695 commit 9c18da9Copy full SHA for 9c18da9
hibernate-core/src/main/java/org/hibernate/query/internal/QueryEngineImpl.java
@@ -148,8 +148,12 @@ private static SqmFunctionRegistry createFunctionRegistry(
148
dialect.initializeFunctionRegistry( functionContributions );
149
150
if ( LOG_HQL_FUNCTIONS.isDebugEnabled() ) {
151
+ var list = new StringBuilder("Available HQL Functions:\n");
152
sqmFunctionRegistry.getFunctionsByName()
- .forEach( entry -> LOG_HQL_FUNCTIONS.debug( entry.getValue().getSignature( entry.getKey() ) ) );
153
+ .forEach( entry -> list.append('\t')
154
+ .append( entry.getValue().getSignature( entry.getKey() ) )
155
+ .append('\n') );
156
+ LOG_HQL_FUNCTIONS.debug( list.toString() );
157
}
158
159
return sqmFunctionRegistry;
0 commit comments