HHH-8005 Sybase 15 - nullable column are not nullable (when created by

SchemaExport)
This commit is contained in:
Brett Meyer 2013-02-14 18:42:42 -05:00
parent 3797e2150a
commit 212c50f5d7

View File

@ -50,4 +50,9 @@ public int getInExpressionCountLimit() {
protected SqlTypeDescriptor getSqlTypeDescriptorOverride(int sqlCode) {
return sqlCode == Types.BLOB ? BlobTypeDescriptor.PRIMITIVE_ARRAY_BINDING : super.getSqlTypeDescriptorOverride( sqlCode );
}
@Override
public String getNullColumnString() {
return "null";
}
}