Skip to content
New issue

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

db.sql.table is incorrectly set to "public" when running qualified queries against PostgreSQL #13608

Open
MarcusDunn opened this issue Mar 28, 2025 · 0 comments · May be fixed by #13612
Open
Labels
bug Something isn't working needs triage New issue that requires triage

Comments

@MarcusDunn
Copy link

MarcusDunn commented Mar 28, 2025

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:

Arguments.of(
    named(
        system.system + " Select from qualified Table",
            new Parameter(
                system.system,
                 "SELECT * FROM \"public\".\"person\" where first_name = 'tom'",
                 "SELECT * FROM \"public\".\"person\" where first_name = ?",
                // `"SELECT " + DB + "public.person"` would also be correct I think
                 "SELECT " + DB + ".person",
                 "person",
                 "SELECT")))

will yield:

[Span 1] Expected span to have name <SELECT tempdb.person> but was <SELECT tempdb.public>
Expected :SELECT tempdb.person
Actual   :SELECT tempdb.public

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.

@MarcusDunn MarcusDunn added bug Something isn't working needs triage New issue that requires triage labels Mar 28, 2025
@laurit laurit linked a pull request Mar 28, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working needs triage New issue that requires triage
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant