aboutsummaryrefslogtreecommitdiff
path: root/src/insert.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-11-03 20:55:06 +0000
committerdrh <drh@noemail.net>2008-11-03 20:55:06 +0000
commitdfe88ece7410f11e0b26ba8fbf555f21bac7e740 (patch)
tree25390da2a39597d94317aa84a31b84eaf7281714 /src/insert.c
parente435975093dcde5e14bbe102c79e5a325672e9d7 (diff)
downloadsqlite-dfe88ece7410f11e0b26ba8fbf555f21bac7e740.tar.gz
sqlite-dfe88ece7410f11e0b26ba8fbf555f21bac7e740.zip
Change the name of the Cursor object to VdbeCursor. (CVS 5857)
FossilOrigin-Name: fdb98fd8c1706085ebeef8e48ac6737839bed5e5
Diffstat (limited to 'src/insert.c')
-rw-r--r--src/insert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/insert.c b/src/insert.c
index 225388edb..4b413ec65 100644
--- a/src/insert.c
+++ b/src/insert.c
@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle INSERT statements in SQLite.
**
-** $Id: insert.c,v 1.250 2008/10/31 10:53:23 danielk1977 Exp $
+** $Id: insert.c,v 1.251 2008/11/03 20:55:07 drh Exp $
*/
#include "sqliteInt.h"
@@ -1385,7 +1385,7 @@ void sqlite3CompleteInsertion(
int sqlite3OpenTableAndIndices(
Parse *pParse, /* Parsing context */
Table *pTab, /* Table to be opened */
- int baseCur, /* Cursor number assigned to the table */
+ int baseCur, /* Cursor number assigned to the table */
int op /* OP_OpenRead or OP_OpenWrite */
){
int i;