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 @@ public class StandardTableExporter implements Exporter<Table> {
|
||||||
Column column = (Column) iter.next();
|
Column column = (Column) iter.next();
|
||||||
String columnComment = column.getComment();
|
String columnComment = column.getComment();
|
||||||
if ( columnComment != null ) {
|
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…
Reference in New Issue