Skip to content

Commit

Permalink
[fix](cache) fix show cache hotspot syntax error (#41519)
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Oct 2, 2024
1 parent ff79d39 commit ccae8dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private String generateQueryString() {
query = q1.append(q2);
} else if (metaDataPos == 2) {
query = new StringBuilder("select partition_id as PartitionId, partition_name as PartitionName"
+ "FROM " + TABLE_NAME.toString()
+ " FROM " + TABLE_NAME.toString()
+ " where " + whereExpr.get(0)
+ " and " + whereExpr.get(1)
+ "group by cluster_id, cluster_name, table_id, "
Expand Down

0 comments on commit ccae8dd

Please sign in to comment.