Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
usfalami committed Aug 30, 2024
1 parent 91039b0 commit e4d2ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/usf/jquery/core/DBView.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default String sql(QueryParameterBuilder builder, Object[] args) {

default String sqlWithTag(QueryParameterBuilder builder) {
var tag = builder.view(this);
var sql = sql(builder);
var sql = builder.getOverView().getOrDefault(this, this).sql(builder); //!important
return isNull(tag) ? sql : sql + SPACE + tag;
}
}

0 comments on commit e4d2ea7

Please sign in to comment.