Skip to content

Commit

Permalink
Revert "Fix add comment on columns"
Browse files Browse the repository at this point in the history
This reverts commit d0d19d8.

(cherry picked from commit fee6df7)
  • Loading branch information
aleksey.kozlov committed May 30, 2024
1 parent e34cf3a commit b459752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/underworldlabs/util/SQLUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ public static String generateCommentForColumns(
StringBuilder sb = new StringBuilder();

for (ColumnData cd : cols) {
String name = format(relationName, cd.getConnection()) + "." + cd.getColumnName();
String name = format(relationName, cd.getConnection()) + "." + cd.getFormattedColumnName();
sb.append(generateComment(name, metaTag, cd.getRemarks(), delimiter, true, cd.getConnection()));
}

Expand Down

0 comments on commit b459752

Please sign in to comment.