diff options
author | drh <drh@noemail.net> | 2017-05-29 14:26:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-05-29 14:26:07 +0000 |
commit | 979dd1be5710eb2ed38a46b1712cf5da74947c2a (patch) | |
tree | 2c75713368428b53cfdbeac4ba2573f383c84dca /src/sqliteInt.h | |
parent | d8a295669c4308647717c54f58697746e99e37ce (diff) | |
download | sqlite-979dd1be5710eb2ed38a46b1712cf5da74947c2a.tar.gz sqlite-979dd1be5710eb2ed38a46b1712cf5da74947c2a.zip |
Optimizations to the Walker object and its methods to make the code a little
smaller and to help it run a little faster.
FossilOrigin-Name: 6854a34ed708259f2280f7ee56cec09f7fc99810dc739dc2814ddeae286aa2c4
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index fc24885e2..7c78fdb42 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3337,6 +3337,10 @@ int sqlite3WalkSelect(Walker*, Select*); int sqlite3WalkSelectExpr(Walker*, Select*); int sqlite3WalkSelectFrom(Walker*, Select*); int sqlite3ExprWalkNoop(Walker*, Expr*); +int sqlite3SelectWalkNoop(Walker*, Select*); +#ifdef SQLITE_DEBUG +void sqlite3SelectWalkAssert2(Walker*, Select*); +#endif /* ** Return code from the parse-tree walking primitives and their |