Update extensions/ql-vscode/src/log-insights/join-order.ts

Co-authored-by: Andrew Eisenberg <aeisenberg@github.com>
This commit is contained in:
Dave Bartolomeo
2022-08-12 12:48:28 -04:00
committed by GitHub
parent d58fb54928
commit eb2d00e999

View File

@@ -26,12 +26,7 @@ function makeKey(
'queryCausingWork was not defined on an event we expected it to be defined for!'
);
}
return (
queryCausingWork +
':' +
predicate +
(suffix ? ' ' + suffix : '')
);
return `${queryCausingWork}:${predicate}${suffix ? ' ' + suffix : ''};
}
function getDependentPredicates(operations: string[]): I.List<string> {