Skip to content

Commit

Permalink
END
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqiang-hhhh committed Jan 6, 2025
1 parent 386777b commit 93f0415
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ public class ShowLoadProfileStmt extends ShowStmt implements NotFallbackInParser
static {
ShowResultSetMetaData.Builder builder = ShowResultSetMetaData.builder();
for (String key : SummaryProfile.SUMMARY_KEYS) {
if (key.equals(SummaryProfile.DISTRIBUTED_PLAN)) {
continue;
}
builder.addColumn(new Column(key, ScalarType.createStringType()));
}
META_DATA_QUERY_IDS = builder.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ public class ShowQueryProfileStmt extends ShowStmt implements NotFallbackInParse
static {
ShowResultSetMetaData.Builder builder = ShowResultSetMetaData.builder();
for (String key : SummaryProfile.SUMMARY_KEYS) {
if (key.equals(SummaryProfile.DISTRIBUTED_PLAN)) {
continue;
}
builder.addColumn(new Column(key, ScalarType.createStringType()));
}
META_DATA_QUERY_IDS = builder.build();
Expand Down

0 comments on commit 93f0415

Please sign in to comment.