mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-12 14:14:49 +00:00
Allow access to sqlBuffer via @Internal method
This commit is contained in:
parent
28bb577838
commit
6034d357bb
@ -24,6 +24,7 @@
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
import org.hibernate.Internal;
|
||||
import org.hibernate.LockMode;
|
||||
import org.hibernate.LockOptions;
|
||||
import org.hibernate.QueryException;
|
||||
@ -442,6 +443,12 @@ public String getSql() {
|
||||
return sqlBuffer.toString();
|
||||
}
|
||||
|
||||
// For Blaze-Persistence until its function rendering code doesn't depend on SQL fragments anymore
|
||||
@Internal
|
||||
public StringBuilder getSqlBuffer() {
|
||||
return sqlBuffer;
|
||||
}
|
||||
|
||||
protected void cleanup() {
|
||||
if ( lazySessionWrapperOptions != null ) {
|
||||
lazySessionWrapperOptions.cleanup();
|
||||
|
Loading…
x
Reference in New Issue
Block a user