Skip to content

Commit

Permalink
[Fix-392] Fix the method of connecting the filters
Browse files Browse the repository at this point in the history
  • Loading branch information
xxzuo committed Apr 26, 2024
1 parent 682ad5e commit 143211c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,11 @@ public ExecuteSql getActualValue(Map<String,String> inputParameter) {
actualValueSql.append(" group by ${column} order by count desc ");
switch (srcConnectorType){
case "oracle":
// oracle the rownum filter should be placed at the outermost layer of the query, otherwise it cannot be filtered
actualValueSql.append(" ) T where ${limit_top_50_key} ");
break;
default:
actualValueSql.append(" group by ${column} order by count desc ${limit_top_50_key}) T");
actualValueSql.append(" ${limit_top_50_key}) T");
break;
}

Expand Down

0 comments on commit 143211c

Please sign in to comment.