db.sql.table
is incorrectly set to "public" when running qualified queries against PostgreSQL
#13608
Labels
db.sql.table
is incorrectly set to "public" when running qualified queries against PostgreSQL
#13608
Describe the bug
When using Postgresql, R2dbc, and qualified table names, span names and table names are incorrect.
Steps to reproduce
query for
SELECT * FROM "public"."person" where first_name = 'tom'
with r2dbc.Adding the following case to
AbstractR2dbcStatementTest
will reproduce:will yield:
Expected behavior
the correct table name in the span.
The
db.sql.table
attribute is also incorrectly set to "public"Actual behavior
"public" is parsed out as the table name.
Javaagent or library instrumentation version
9b97ac7 (main as of writing)
Environment
JDK: Java 23
OS: Ubuntu 24.04
Additional context
when using the Jooq library, this is the generated SQL. This syntax is illegal in other dialects.
The text was updated successfully, but these errors were encountered: