Closed kanderson250 closed 5 months ago
Attention: Patch coverage is 88.88889%
with 1 lines
in your changes are missing coverage. Please review.
Project coverage is 70.68%. Comparing base (
a16c459
) to head (645037f
). Report is 308 commits behind head on main.
Files | Patch % | Lines |
---|---|---|
...ewrelic/agent/bridge/datastore/R2dbcOperation.java | 88.88% | 0 Missing and 1 partial :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
This PR incorporates the changes from the custom jar we built to prevent unnecessary regex checks when parsing SQL. A customer had reported latency with r2dbc drivers, and removing the extra regex checks resolved their issue.
Instead of performing a regex check for all operations, we now do a simple String
contains
on the operation name, before continuing with the match.