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
Please search the existing issues for relevant feature requests, add upvotes to pre-existing requests.
TiDB use its own plan format.
explain select c_id from customer where c_city='8VM4rH5e6lUfZAqMFU'; +---------------------------+-----------+-----------+----------------+----------------------------------------------------+ | id | estRows | task | access object | operator info | +---------------------------+-----------+-----------+----------------+----------------------------------------------------+ | Projection_4 | 1.00 | root | | onlinedb.customer.c_id | | └─TableReader_7 | 1.00 | root | | data:Selection_6 | | └─Selection_6 | 1.00 | cop[tikv] | | eq(onlinedb.customer.c_city, "8VM4rH5e6lUfZAqMFU") | | └─TableFullScan_5 | 100000.00 | cop[tikv] | table:customer | keep order:false | +---------------------------+-----------+-----------+----------------+----------------------------------------------------+ 4 rows in set (0.00 sec)
but SOAR use MySQL style plan format.When SOAR analyze the SQL statement running on TiDB , all of the explain information filled with NULL.
Any user wants to tune the TiDB SQL performance by using SOAR. Is any plan about the explain information compatible with TiDB explain plan.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please search the existing issues for relevant feature requests, add upvotes to pre-existing requests.
Feature Description
TiDB use its own plan format.
but SOAR use MySQL style plan format.When SOAR analyze the SQL statement running on TiDB , all of the explain information filled with NULL.
Use Case(s)
Any user wants to tune the TiDB SQL performance by using SOAR.
Is any plan about the explain information compatible with TiDB explain plan.
The text was updated successfully, but these errors were encountered: