Skip to content

Commit c7aabe6

Browse files
wesleywiserMark-Simulacrum
authored andcommitted
Remove query cache hits column and update invocations title
Fixes #529
1 parent ff4051e commit c7aabe6

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

site/static/detailed-query.html

+2-11
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@ <h3 id="title"></h3>
5757
<th data-sort-idx="2" data-default-sort-dir="-1">Time</th>
5858
<th data-sort-idx="10" data-default-sort-dir="-1">% Total Time</th>
5959
<th class="delta">Δ</th>
60-
<th data-sort-idx="5" data-default-sort-dir="-1">Invocations</th>
61-
<th class="delta">Δ</th>
62-
<th data-sort-idx="3" data-default-sort-dir="-1">Cache Misses</th>
60+
<th data-sort-idx="5" data-default-sort-dir="-1">Full Executions</th>
6361
<th class="delta">Δ</th>
6462
<th data-sort-idx="7" data-default-sort-dir="-1" title="Incremental loading time">Loading</th>
6563
<th class="delta">Δ</th>
@@ -191,12 +189,6 @@ <h3 id="title"></h3>
191189
} else {
192190
td(row, "-", true);
193191
}
194-
td(row, cur.cache_misses);
195-
if (prev) {
196-
td(row, fmt_delta(prev.cache_misses, cur.cache_misses), true);
197-
} else {
198-
td(row, "-", true);
199-
}
200192
td(row, to_seconds(cur.incremental_load_time).toFixed(3));
201193
if (prev) {
202194
td(row,
@@ -228,15 +220,14 @@ <h3 id="title"></h3>
228220
];
229221
}
230222
let [
231-
label, self_time, percent_total_time, cache_misses,
223+
label, self_time, percent_total_time, _cache_misses,
232224
_cache_hits, invocation_count, _blocked_time,
233225
incremental_load_time
234226
] = element;
235227
return {
236228
label,
237229
self_time,
238230
percent_total_time,
239-
cache_misses,
240231
invocation_count,
241232
incremental_load_time,
242233
};

0 commit comments

Comments
 (0)