1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-06 15:49:35 +03:00

Initial check-in of the code for the new sqlite_set_authorizer() API function.

The code is mostly untested at this point. (CVS 827)

FossilOrigin-Name: 52d5007f64d0af5286b2a0e1f0b9e53c86bece3f
This commit is contained in:
drh
2003-01-12 18:02:16 +00:00
parent 49f0936ec7
commit ed6c8671b3
17 changed files with 277 additions and 40 deletions

View File

@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle DELETE FROM statements.
**
** $Id: delete.c,v 1.43 2003/01/11 13:30:57 drh Exp $
** $Id: delete.c,v 1.44 2003/01/12 18:02:18 drh Exp $
*/
#include "sqliteInt.h"
@@ -88,7 +88,8 @@ void sqliteDeleteFrom(
int row_triggers_exist = 0;
int oldIdx = -1;
if( pParse->nErr || sqlite_malloc_failed ){
if( pParse->nErr || sqlite_malloc_failed
|| sqliteAuthCommand(pParse,"DELETE",0) ){
pTabList = 0;
goto delete_from_cleanup;
}
@@ -125,6 +126,7 @@ void sqliteDeleteFrom(
assert( pTabList->nSrc==1 );
pTab = pTabList->a[0].pTab;
assert( pTab->pSelect==0 ); /* This table is not a view */
if( sqliteAuthDelete(pParse, pTab->zName, 0) ) goto delete_from_cleanup;
/* Allocate a cursor used to store the old.* data for a trigger.
*/