1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Add the SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option to enable extra

commentary in the EXPLAIN output.  Formerly, this was only available with
SQLITE_DEBUG.

FossilOrigin-Name: e1a89b56f7173166bb9224e2e360fd67ad3399c3
This commit is contained in:
drh
2013-10-30 02:28:23 +00:00
parent f63552b258
commit c7379ce442
7 changed files with 33 additions and 22 deletions

View File

@@ -784,7 +784,7 @@ static int codeTriggerProgram(
return 0;
}
#ifdef SQLITE_DEBUG
#ifdef SQLITE_ENABLE_EXPLAIN_COMMENTS
/*
** This function is used to add VdbeComment() annotations to a VDBE
** program. It is not used in production code, only for debugging.