Skip to content

Commit 57bb8ce

Browse files
author
Dave Bartolomeo
committed
Update regexes to match new summary text
1 parent 1219ef4 commit 57bb8ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/ql-vscode/src/log-insights/summary-parser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ export interface SummarySymbols {
2828
}
2929

3030
// Tuple counts for Expr::Expr::getParent#dispred#f0820431#ff@76d6745o:
31-
const NON_RECURSIVE_TUPLE_COUNT_REGEXP = /^Tuple counts for (?<predicateName>\S+):$/;
31+
const NON_RECURSIVE_TUPLE_COUNT_REGEXP = /^Evaluated relational algebra for predicate (?<predicateName>\S+) with tuple counts:$/;
3232
// Tuple counts for Expr::Expr::getEnclosingStmt#f0820431#bf@923ddwj9 on iteration 0 running pipeline base:
33-
const RECURSIVE_TUPLE_COUNT_REGEXP = /^Tuple counts for (?<predicateName>\S+) on iteration (?<iteration>\d+) /;
33+
const RECURSIVE_TUPLE_COUNT_REGEXP = /^Evaluated relational algebra for predicate (?<predicateName>\S+) on iteration (?<iteration>\d+) running pipeline (?<pipeline>\S+) with tuple counts:$/;
3434
const RETURN_REGEXP = /^\s*return /;
3535

3636
/**

0 commit comments

Comments
 (0)