mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-03-01 07:19:15 +00:00
HHH-10632 - Fix comment on column missing seperator between table name and column
This commit is contained in:
parent
feab5063c6
commit
4c7525d89e
@ -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 + "'" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user