-
Notifications
You must be signed in to change notification settings - Fork 751
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
feat: Implemented a new sql explain analyze graphical
#16543
Conversation
@zhang2014 The contributor is from the Open Source Promotion Plan 2024. |
Hi @Maricaya, it seems the test failed because we need to run |
tests/sqllogictests/suites/mode/standalone/explain/explain_analyze_graphical.test
Outdated
Show resolved
Hide resolved
dc6a71f
to
6296db8
Compare
I hereby agree to the terms of the CLA available at: https://docs.databend.com/dev/policies/cla/
Summary:
This PR introduces a new
EXPLAIN ANALYZE GRAPHICAL
command, which provides a graphical visualization of SQL performance analysis. It allows users to better understand query execution and optimize performance by providing graphical insights into query statistics, table scans, and partitioning details.Example:
You can test this feature with the following
curl
request:Expected Output: The output will be in a graphical JSON format containing detailed statistics about query execution, table scans, partitions, and other metrics, such as:
Tests
Type of change
This change is