以前在Oracle里面遇到过查询系统表慢的情况。可以通过收集系统表统计信息来优化。
TiDB好像不能这样干,手动收集这种mem表会报错。
ANALYZE table tables;
ERROR 1142 (42000): INSERT command denied to user 'root'@'%' for table 'tables'
以前在Oracle里面遇到过查询系统表慢的情况。可以通过收集系统表统计信息来优化。
TiDB好像不能这样干,手动收集这种mem表会报错。
ANALYZE table tables;
ERROR 1142 (42000): INSERT command denied to user 'root'@'%' for table 'tables'