Skip to content

Commit

Permalink
Fix invalid quoting on ou column [DHIS-16705] (#19329)
Browse files Browse the repository at this point in the history
  • Loading branch information
luciano-fiandesio authored Nov 28, 2024
1 parent e6cb5db commit d16f397
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ private String ouQuote(String tableAlias, String col, boolean noColumnAlias) {
+ ((noColumnAlias) ? "" : " as " + col);
}

return quote(tableAlias, col);
return sqlBuilder.quote(tableAlias, col);
}

@Override
Expand Down

0 comments on commit d16f397

Please sign in to comment.