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

Add code to invoke the xDestroy method of a virtual table when it is dropped. (CVS 3218)

FossilOrigin-Name: f0c7c8d12c04376e48c6d53a29cfae3fa13b52cf
This commit is contained in:
danielk1977
2006-06-12 16:01:21 +00:00
parent cdb36b7dc9
commit 9e39ce87cf
7 changed files with 76 additions and 25 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.500 2006/06/12 12:08:45 danielk1977 Exp $
** @(#) $Id: sqliteInt.h,v 1.501 2006/06/12 16:01:22 danielk1977 Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -1801,6 +1801,7 @@ void sqlite3VtabArgInit(Parse*);
void sqlite3VtabArgExtend(Parse*, Token*);
int sqlite3VtabCallCreate(sqlite3*, int, const char *, char **);
int sqlite3VtabCallConnect(Parse*, Table*);
int sqlite3VtabCallDestroy(sqlite3*, int, const char *);
#ifdef SQLITE_SSE
#include "sseInt.h"