Fix issue with unnest rendering for old PostgreSQL and EDB versions

This commit is contained in:
Christian Beikov 2024-11-20 19:30:44 +01:00
parent ed5f1d82d1
commit 29b00d6754
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class PostgreSQLUnnestFunction extends UnnestFunction {
selectableMapping
) );
}
sqlAppender.append( ' ' );
sqlAppender.append( " as " );
sqlAppender.append( selectableMapping.getSelectionExpression() );
} );
sqlAppender.appendSql( " from jsonb_array_elements(" );