HHH-8017 Correct SybaseDialect's getNullColumnString

This commit is contained in:
Brett Meyer 2013-02-18 11:47:09 -05:00
parent a6c46408df
commit d315f6532f

View File

@ -53,6 +53,6 @@ protected SqlTypeDescriptor getSqlTypeDescriptorOverride(int sqlCode) {
@Override
public String getNullColumnString() {
return "null";
return " null";
}
}