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
SQLCommon::short_sql
Summary
SQLCommon::short_sql is expected to trim insert SQL to string, which length is at most 64.
insert SQL
but, it does not.
How to reproduce:
system.query_log
select * from system.query_log where query_text like "insert%"
The text was updated successfully, but these errors were encountered:
Add a new QueryConfig for query_log name like query_log_enabled (default is true)?
QueryConfig
query_log_enabled
Sorry, something went wrong.
It seems max_query_log_size=0 can do that.
sundy-li
Successfully merging a pull request may close this issue.
Summary
SQLCommon::short_sql
is expected to triminsert SQL
to string, which length is at most 64.but, it does not.
How to reproduce:
system.query_log
e.g.
select * from system.query_log where query_text like "insert%"
The text was updated successfully, but these errors were encountered: