@DisableLikeWithLeadingWildcard - quick-perf/doc GitHub Wiki

Verifies that SQL statements do not contain a LIKE with a leading wildcard (% or _). If so, the test will fail.

You can read this article explaining why a LIKE with a leading wildcard could be a bad idea for performance.

We recommend configuring DisableLikeWithLeadingWildcard annotation with a global scope. You can disable the global scope DisableLikeWithLeadingWildcard by adding EnableLikeWithLeadingWildcard annotation on specific methods.