diff options
author | drh <drh@noemail.net> | 2009-05-28 21:04:37 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-05-28 21:04:37 +0000 |
commit | b74b101766e3766f7485a1b85451b914349e2f1f (patch) | |
tree | ec81ff3dd84b7abce6b1d6f3cd18cf6b5dd2d8b5 /src/build.c | |
parent | 2c220455b91feef421df28bdcac2efe6d25d6a75 (diff) | |
download | sqlite-b74b101766e3766f7485a1b85451b914349e2f1f.tar.gz sqlite-b74b101766e3766f7485a1b85451b914349e2f1f.zip |
Remove references to deleted function sqlite3ExprRegister(). Changes to
the expr.c source module to promote better testing. (CVS 6686)
FossilOrigin-Name: 6ae4ad6ebee4db88c411df97bb1de574708dd53c
Diffstat (limited to 'src/build.c')
-rw-r--r-- | src/build.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/build.c b/src/build.c index ce8385992..93548aff6 100644 --- a/src/build.c +++ b/src/build.c @@ -22,7 +22,7 @@ ** COMMIT ** ROLLBACK ** -** $Id: build.c,v 1.546 2009/05/28 01:00:55 drh Exp $ +** $Id: build.c,v 1.547 2009/05/28 21:04:38 drh Exp $ */ #include "sqliteInt.h" @@ -1880,7 +1880,8 @@ static void destroyRootPage(Parse *pParse, int iTable, int iDb){ ** reflect this. ** ** The "#NNN" in the SQL is a special constant that means whatever value - ** is in register NNN. See sqlite3RegisterExpr(). + ** is in register NNN. See grammar rules associated with the TK_REGISTER + ** token for additional information. */ sqlite3NestedParse(pParse, "UPDATE %Q.%s SET rootpage=%d WHERE #%d AND rootpage=#%d", |