Update ql/ql/src/queries/performance/MissingNoinline.ql

Co-authored-by: Geoffrey White <40627776+geoffw0@users.noreply.github.com>
This commit is contained in:
Mathias Vorreiter Pedersen
2023-07-19 11:33:16 +01:00
committed by GitHub
parent 5a15c19e4b
commit b470dd7f00

View File

@@ -23,4 +23,4 @@ where
// is inlined because it gives a better join-order".
not decl.getAnAnnotation() instanceof Inline and
not decl.getAnAnnotation() instanceof BindingSet
select decl, "This predicate might be inlined."
select decl, "This predicate should probably be marked pragma[noinline] to prevent inlining."