HHH-16228 Allow Dialect wrapper to expose the wrapped instance
This commit is contained in:
parent
9ec32782a0
commit
598b782387
|
@ -108,6 +108,14 @@ public class DialectDelegateWrapper extends Dialect {
|
|||
this.wrapped = Objects.requireNonNull( wrapped );
|
||||
}
|
||||
|
||||
/**
|
||||
* Exposed so to allow code needing to know the implementation.
|
||||
* @return the wrapped Dialect
|
||||
*/
|
||||
public Dialect getWrappedDialect() {
|
||||
return wrapped;
|
||||
}
|
||||
|
||||
//can't be overriden because of how Dialects get initialized: see constructor of parent
|
||||
@Override
|
||||
protected final void checkVersion() {
|
||||
|
|
Loading…
Reference in New Issue