File tree 1 file changed +3
-0
lines changed 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -175,6 +175,7 @@ pub fn perform_analysis(data: ProfilingData) -> Results {
175
175
data. self_time -= current_event_duration;
176
176
}
177
177
INCREMENTAL_LOAD_RESULT_EVENT_KIND => {
178
+ data. self_time -= current_event_duration;
178
179
data. incremental_load_time -= current_event_duration;
179
180
}
180
181
_ => {
@@ -200,12 +201,14 @@ pub fn perform_analysis(data: ProfilingData) -> Results {
200
201
201
202
QUERY_BLOCKED_EVENT_KIND => {
202
203
record_event_data ( & current_event. label , & |data| {
204
+ data. self_time += current_event_duration;
203
205
data. blocked_time += current_event_duration;
204
206
} ) ;
205
207
}
206
208
207
209
INCREMENTAL_LOAD_RESULT_EVENT_KIND => {
208
210
record_event_data ( & current_event. label , & |data| {
211
+ data. self_time += current_event_duration;
209
212
data. incremental_load_time += current_event_duration;
210
213
} ) ;
211
214
}
You can’t perform that action at this time.
0 commit comments