HHH-10632 - Fix comment on column missing seperator between table name and column

This commit is contained in:
Andrea Boriero 2016-03-22 17:42:45 +00:00
parent feab5063c6
commit 4c7525d89e

View File

@ -167,7 +167,7 @@ protected void applyComments(Table table, QualifiedName tableName, List<String>
Column column = (Column) iter.next();
String columnComment = column.getComment();
if ( columnComment != null ) {
sqlStrings.add( "comment on column " + tableName + column.getQuotedName( dialect ) + " is '" + columnComment + "'" );
sqlStrings.add( "comment on column " + tableName + '.' + column.getQuotedName( dialect ) + " is '" + columnComment + "'" );
}
}
}