mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 08:35:13 +00:00
HHH-10015 - Oracle Dialect override Dialect#canCreateSchema() to return false
This commit is contained in:
parent
b0cf427c21
commit
1163d2bd0f
@ -667,4 +667,9 @@ public CallableStatementSupport getCallableStatementSupport() {
|
||||
// Oracle supports returning cursors
|
||||
return StandardCallableStatementSupport.REF_CURSOR_INSTANCE;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canCreateSchema() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -396,4 +396,9 @@ public int getInExpressionCountLimit() {
|
||||
public String getNotExpression(String expression) {
|
||||
return "not (" + expression + ")";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canCreateSchema() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user