@@ -214,6 +214,8 @@ fn get_self_profile_delta(
214
214
self_time : profile. totals . self_time as i64 - base_profile. totals . self_time as i64 ,
215
215
invocation_count : profile. totals . invocation_count as i32
216
216
- base_profile. totals . invocation_count as i32 ,
217
+ number_of_cache_hits : profile. totals . number_of_cache_hits as i32
218
+ - base_profile. totals . number_of_cache_hits as i32 ,
217
219
incremental_load_time : profile. totals . incremental_load_time as i64
218
220
- base_profile. totals . incremental_load_time as i64 ,
219
221
} ;
@@ -230,6 +232,8 @@ fn get_self_profile_delta(
230
232
let delta = self_profile:: QueryDataDelta {
231
233
self_time : qd. self_time as i64 - base_qd. self_time as i64 ,
232
234
invocation_count : qd. invocation_count as i32 - base_qd. invocation_count as i32 ,
235
+ number_of_cache_hits : qd. number_of_cache_hits as i32
236
+ - base_qd. number_of_cache_hits as i32 ,
233
237
incremental_load_time : qd. incremental_load_time as i64
234
238
- base_qd. incremental_load_time as i64 ,
235
239
} ;
@@ -240,6 +244,7 @@ fn get_self_profile_delta(
240
244
let delta = self_profile:: QueryDataDelta {
241
245
self_time : qd. self_time as i64 ,
242
246
invocation_count : qd. invocation_count as i32 ,
247
+ number_of_cache_hits : qd. number_of_cache_hits as i32 ,
243
248
incremental_load_time : qd. incremental_load_time as i64 ,
244
249
} ;
245
250
0 commit comments