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

This commit is contained in:
brmeyer 2012-09-06 12:51:08 -04:00
parent 3f34271a57
commit 992e1387ef
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;
}
}