diff options
author | shane <shane@noemail.net> | 2008-09-01 21:59:42 +0000 |
---|---|---|
committer | shane <shane@noemail.net> | 2008-09-01 21:59:42 +0000 |
commit | fa4e62f3d882c25504a764b98c33b38fcd078ade (patch) | |
tree | 9ff895f22922e026636e1815182b779e3f916537 /src/delete.c | |
parent | 689aa852cb7436ddefb38bc326f6be01de411fa2 (diff) | |
download | sqlite-fa4e62f3d882c25504a764b98c33b38fcd078ade.tar.gz sqlite-fa4e62f3d882c25504a764b98c33b38fcd078ade.zip |
Omit prototype for and calls to sqlite3MaterializeView() if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER). (CVS 5655)
FossilOrigin-Name: 9cf484fc17944ffa14335e391112d82d2390d116
Diffstat (limited to 'src/delete.c')
-rw-r--r-- | src/delete.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/delete.c b/src/delete.c index 4219b8813..cc25c1b72 100644 --- a/src/delete.c +++ b/src/delete.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** in order to generate code for DELETE FROM statements. ** -** $Id: delete.c,v 1.174 2008/08/29 02:14:03 drh Exp $ +** $Id: delete.c,v 1.175 2008/09/01 21:59:43 shane Exp $ */ #include "sqliteInt.h" @@ -249,9 +249,11 @@ void sqlite3DeleteFrom( /* If we are trying to delete from a view, realize that view into ** a ephemeral table. */ +#if !defined(SQLITE_OMIT_VIEW) && !defined(SQLITE_OMIT_TRIGGER) if( isView ){ sqlite3MaterializeView(pParse, pTab, pWhere, iCur); } +#endif /* Resolve the column names in the WHERE clause. */ |