diff options
author | drh <drh@noemail.net> | 2008-11-03 20:55:06 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-11-03 20:55:06 +0000 |
commit | dfe88ece7410f11e0b26ba8fbf555f21bac7e740 (patch) | |
tree | 25390da2a39597d94317aa84a31b84eaf7281714 /src/build.c | |
parent | e435975093dcde5e14bbe102c79e5a325672e9d7 (diff) | |
download | sqlite-dfe88ece7410f11e0b26ba8fbf555f21bac7e740.tar.gz sqlite-dfe88ece7410f11e0b26ba8fbf555f21bac7e740.zip |
Change the name of the Cursor object to VdbeCursor. (CVS 5857)
FossilOrigin-Name: fdb98fd8c1706085ebeef8e48ac6737839bed5e5
Diffstat (limited to 'src/build.c')
-rw-r--r-- | src/build.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build.c b/src/build.c index 84fb23c3f..d08627cd1 100644 --- a/src/build.c +++ b/src/build.c @@ -22,7 +22,7 @@ ** COMMIT ** ROLLBACK ** -** $Id: build.c,v 1.499 2008/10/22 10:45:38 danielk1977 Exp $ +** $Id: build.c,v 1.500 2008/11/03 20:55:07 drh Exp $ */ #include "sqliteInt.h" #include <ctype.h> @@ -3057,7 +3057,7 @@ SrcList *sqlite3SrcListAppend( } /* -** Assign cursors to all tables in a SrcList +** Assign VdbeCursor index numbers to all tables in a SrcList */ void sqlite3SrcListAssignCursors(Parse *pParse, SrcList *pList){ int i; |