We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f461e7 commit 08bffabCopy full SHA for 08bffab
1 file changed
extensions/ql-vscode/src/log-insights/performance-comparison.ts
@@ -17,7 +17,14 @@ export interface PipelineSummary {
17
* to a web view (which rules out `Map` values, for example).
18
*/
19
export interface PerformanceComparisonDataFromLog {
20
- /** Names of predicates mentioned in the log */
+ /**
21
+ * Names of predicates mentioned in the log.
22
+ *
23
+ * For compactness, details of these predicates are stored in a "struct of arrays" style.
24
25
+ * All fields (except those ending with `Indices`) should contain an array of the same length as `names`;
26
+ * details of a given predicate should be stored at the same index in each of those arrays.
27
+ */
28
names: string[];
29
30
/** Number of milliseconds spent evaluating the `i`th predicate from the `names` array. */
0 commit comments