Fix backwards compatibility issue with FunctionReturnTypeResolver

This commit is contained in:
Christian Beikov 2024-10-26 16:02:08 +02:00
parent 89629bc702
commit 6d93f0eeaf
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public interface FunctionReturnTypeResolver {
ReturnableType<?> impliedType,
List<? extends SqmTypedNode<?>> arguments,
TypeConfiguration typeConfiguration) {
throw new UnsupportedOperationException( "Not implemented for " + getClass().getName() );
return resolveFunctionReturnType( impliedType, new FakeSqmToSqlAstConverter( null ), arguments, typeConfiguration );
}
/**