diff options
author | drh <drh@noemail.net> | 2019-01-31 01:39:01 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-01-31 01:39:01 +0000 |
commit | 9b747068bad531f0300891e6f569f67d55abb93b (patch) | |
tree | 488d1d3ce5c1651757df0db8f3b6598ebe876677 /src/sqliteInt.h | |
parent | 8bf4126c84341c5674fce578146992a36e5c26a8 (diff) | |
download | sqlite-9b747068bad531f0300891e6f569f67d55abb93b.tar.gz sqlite-9b747068bad531f0300891e6f569f67d55abb93b.zip |
Improvements to "PRAGMA parser_trace=ON": Make it a flag pragma, and then
use the flag to show the complete SQL text at the beginning of the parse.
FossilOrigin-Name: 507c43537f00d089efb3c3020fb6e826e8f89f3efa2caaa12c5309d35dd0c22e
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index c13508bb7..b67b3ed76 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1555,6 +1555,7 @@ struct sqlite3 { #define SQLITE_VdbeTrace HI(0x0004) /* True to trace VDBE execution */ #define SQLITE_VdbeAddopTrace HI(0x0008) /* Trace sqlite3VdbeAddOp() calls */ #define SQLITE_VdbeEQP HI(0x0010) /* Debug EXPLAIN QUERY PLAN */ +#define SQLITE_ParserTrace HI(0x0020) /* PRAGMA parser_trace=ON */ #endif /* |