We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef9cb3e commit dc7fb59Copy full SHA for dc7fb59
src/common/base/src/runtime/time_series/time_series_profile.rs
@@ -150,14 +150,14 @@ impl TimeSeriesProfile {
150
pub stats: Vec<(usize, usize)>,
151
}
152
info!(
153
- target: "databend::log::time_series",
154
"{}",
155
- serde_json::to_string(&TimeSeriesStatistics{
+ serde_json::to_string(&TimeSeriesStatistics {
156
query_id: self.query_id.clone(),
157
plan_id: self.plan_id,
158
stats_name: item.name.to_string(),
159
stats: batch,
160
- }).unwrap()
+ })
+ .unwrap()
161
);
162
163
0 commit comments