diff options
author | drh <drh@noemail.net> | 2015-11-07 15:19:59 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-11-07 15:19:59 +0000 |
commit | 2476a6f2cb071b4ea17a99b1ddc05111cd1422f4 (patch) | |
tree | f15b211d55a45a22543eea8c46c0150153f7e851 /src/sqliteInt.h | |
parent | d6b7946c32ec1cf4b77f51ab82db553cf466c488 (diff) | |
download | sqlite-2476a6f2cb071b4ea17a99b1ddc05111cd1422f4.tar.gz sqlite-2476a6f2cb071b4ea17a99b1ddc05111cd1422f4.zip |
Enhance TreeView to show WITH clauses. Add an assert to detect the
infinite loop behavior when certain kinds of errors occur on a nested
WITH clause.
FossilOrigin-Name: 2040d88e877bdb69de125a047cefb4a1558e89e8
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 2b9ece78e..8956c43b0 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3271,6 +3271,7 @@ char *sqlite3VMPrintf(sqlite3*,const char*, va_list); void sqlite3TreeViewExpr(TreeView*, const Expr*, u8); void sqlite3TreeViewExprList(TreeView*, const ExprList*, u8, const char*); void sqlite3TreeViewSelect(TreeView*, const Select*, u8); + void sqlite3TreeViewWith(TreeView*, const With*, u8); #endif |