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
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ public class StandardTableExporter implements Exporter<Table> {
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 + "'" );
}
}
}