HHH-7578 Sybase does not support "unique not null"

This commit is contained in:
brmeyer 2012-09-06 12:51:08 -04:00
parent 588d4be45b
commit c3861c6b33
1 changed files with 5 additions and 0 deletions

View File

@ -40,4 +40,9 @@ public class SybaseDialect extends AbstractTransactSQLDialect {
public int getInExpressionCountLimit() {
return PARAM_LIST_SIZE_LIMIT;
}
@Override
public boolean supportsNotNullUnique() {
return false;
}
}