You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TiDB's mysql Schema document lists TiDB system tables but lacks detailed explanations of the fields within these tables. These explanations are crucial for users to comprehend these tables, particularly tables that are not compatible with MySQL, such as stats_histograms.
Request
Add field explanations for mysql schema tables.
The text was updated successfully, but these errors were encountered:
When we do this we need to make clear that the best practice is to use statement instead of directly inspecting system tables where possible. So SHOW CREATE USER ... instead of SELECT ... FROM mysql.user... etc. This is true for both MySQL, TiDB and other databases.
Issue
The TiDB's
mysql
Schema document lists TiDB system tables but lacks detailed explanations of the fields within these tables. These explanations are crucial for users to comprehend these tables, particularly tables that are not compatible with MySQL, such asstats_histograms
.Request
Add field explanations for
mysql
schema tables.The text was updated successfully, but these errors were encountered: