We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, r2dbc placeholders $1, $2, ... are themselves sanitized, e.g. select * from test where id = $1 is sanitized to:
$1
$2
select * from test where id = $1
opentelemetry-java-instrumentation/instrumentation/vertx/vertx-sql-client-4.0/javaagent/src/test/java/io/opentelemetry/javaagent/instrumentation/vertx/v4_0/sql/VertxSqlClientTest.java
Line 232 in 30d822e
it would be better to preserve the placeholders if possible.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently, r2dbc placeholders
$1
,$2
, ... are themselves sanitized, e.g.select * from test where id = $1
is sanitized to:opentelemetry-java-instrumentation/instrumentation/vertx/vertx-sql-client-4.0/javaagent/src/test/java/io/opentelemetry/javaagent/instrumentation/vertx/v4_0/sql/VertxSqlClientTest.java
Line 232 in 30d822e
it would be better to preserve the placeholders if possible.
The text was updated successfully, but these errors were encountered: