1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Add the opcode OP_VUpdate and replace the xInsert/xDelete members of sqlite3_module with xUpdate. (CVS 3242)

FossilOrigin-Name: 418f3ca84abf0d0876d2c4430f7f6ceaa9c0a17b
This commit is contained in:
danielk1977
2006-06-14 13:03:23 +00:00
parent 98331538bf
commit 399918f271
6 changed files with 48 additions and 18 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to help implement virtual tables.
**
** $Id: vtab.c,v 1.10 2006/06/14 06:58:16 danielk1977 Exp $
** $Id: vtab.c,v 1.11 2006/06/14 13:03:24 danielk1977 Exp $
*/
#ifndef SQLITE_OMIT_VIRTUALTABLE
#include "sqliteInt.h"
@@ -29,7 +29,6 @@ int sqlite3_create_module(
return SQLITE_OK;
}
/*
** Clear any and all virtual-table information from the Table record.
** This routine is called, for example, just before deleting the Table