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

can not get sqlwithvalues when use onAfterExecuteQuery #527

Open
xu1009 opened this issue Mar 19, 2021 · 0 comments
Open

can not get sqlwithvalues when use onAfterExecuteQuery #527

xu1009 opened this issue Mar 19, 2021 · 0 comments

Comments

@xu1009
Copy link

xu1009 commented Mar 19, 2021

when i use JdbcEventListener

@OverRide
public void onAfterExecuteQuery(PreparedStatementInformation statementInformation,
long timeElapsedNanos, SQLException e) {

    long cost = TimeUnit.NANOSECONDS.toMillis(timeElapsedNanos);
    if (cost >= slowQueryThresholdInMill) {
        log.warn("slow query is {} cost is {} ms", statementInformation.getSqlWithValues(),
                cost);
    }
    statementInformation.incrementTimeElapsed(timeElapsedNanos);
    super.onAfterExecuteQuery(statementInformation, timeElapsedNanos, e);
}

statementInformation.getSqlWithValues() can not print sql values

print sql:

select max(t0.date) from interface.stats t0 where t0.type = ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant