aboutsummaryrefslogtreecommitdiff
path: root/src/shell.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2014-09-30 12:33:33 +0000
committerdrh <drh@noemail.net>2014-09-30 12:33:33 +0000
commit4fa4a54f7eb58c465186cac6fe9ab4f5cbddbc12 (patch)
tree9141c7914598f4283f32582a2eb3f9a299c7dd09 /src/shell.c
parent39c4b82b5a82977db329f688ebf4bf0a2d901ec1 (diff)
downloadsqlite-4fa4a54f7eb58c465186cac6fe9ab4f5cbddbc12.tar.gz
sqlite-4fa4a54f7eb58c465186cac6fe9ab4f5cbddbc12.zip
Remove the SQLITE_ENABLE_TREE_EXPLAIN compile-time option. Add alternative
debugging display routines: sqlite3TreeViewExpr(), sqlite3TreeViewExprList(), and sqlite3TreeViewSelect(). FossilOrigin-Name: 4ff51325d6b41d0c59e303b573700ec80c51d216
Diffstat (limited to 'src/shell.c')
-rw-r--r--src/shell.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/shell.c b/src/shell.c
index 9745e0ff2..cd4dadb08 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -1353,15 +1353,6 @@ static int shell_exec(
sqlite3_free(zEQP);
}
- /* Output TESTCTRL_EXPLAIN text of requested */
- if( pArg && pArg->mode==MODE_Explain ){
- const char *zExplain = 0;
- sqlite3_test_control(SQLITE_TESTCTRL_EXPLAIN_STMT, pStmt, &zExplain);
- if( zExplain && zExplain[0] ){
- fprintf(pArg->out, "%s", zExplain);
- }
- }
-
/* If the shell is currently in ".explain" mode, gather the extra
** data required to add indents to the output.*/
if( pArg && pArg->mode==MODE_Explain ){