equal
deleted
inserted
replaced
85 |
85 |
86 Dump execution plan for selected process:: |
86 Dump execution plan for selected process:: |
87 |
87 |
88 MariaDB [mysql]> show explain for 1; |
88 MariaDB [mysql]> show explain for 1; |
89 |
89 |
|
90 .. NOTE:: |
|
91 You shoud check for code ``1003``:: |
|
92 |
|
93 MariaDB [mysql]> show warnings; |
|
94 |
|
95 to ensure for which query plan shown becase query may finished and new |
|
96 started. |
|
97 |
|
98 See: |
|
99 |
|
100 * `SHOW EXPLAIN in MariaDB 10.0 vs EXPLAIN FOR CONNECTION in MySQL 5.7 |
|
101 <http://s.petrunia.net/blog/?p=89>`_ |
|
102 |
90 Profiling queries. |
103 Profiling queries. |
91 ================== |
104 ================== |
92 |
105 |
93 Enable profiling, execute query and review profiling data:: |
106 Enable profiling, execute query and review profiling data:: |
94 |
107 |