** Free the array allocated by explain_data_prepare(). */
| 13037 | ** Free the array allocated by explain_data_prepare(). |
| 13038 | */ |
| 13039 | static void explain_data_delete(ShellState *p){ |
| 13040 | sqlite3_free(p->aiIndent); |
| 13041 | p->aiIndent = 0; |
| 13042 | p->nIndent = 0; |
| 13043 | p->iIndent = 0; |
| 13044 | } |
| 13045 | |
| 13046 | /* |
| 13047 | ** Disable and restore .wheretrace and .selecttrace settings. |