mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-08 03:22:21 +03:00
Do not attempt to omit unused columns of a view in an instead-of trigger
since sometimes those columns can be used in ways that we do not expect. Ticket #3055. (CVS 5012) FossilOrigin-Name: f5fc42e96d36b78797d7fa10b01d22b8501112b1
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
** This file contains C code routines that are called by the parser
|
||||
** to handle UPDATE statements.
|
||||
**
|
||||
** $Id: update.c,v 1.176 2008/04/10 13:33:18 drh Exp $
|
||||
** $Id: update.c,v 1.177 2008/04/15 14:36:42 drh Exp $
|
||||
*/
|
||||
#include "sqliteInt.h"
|
||||
|
||||
@@ -329,8 +329,7 @@ void sqlite3Update(
|
||||
** a ephemeral table.
|
||||
*/
|
||||
if( isView ){
|
||||
sqlite3MaterializeView(pParse, pTab->pSelect, pWhere,
|
||||
old_col_mask|new_col_mask, iCur);
|
||||
sqlite3MaterializeView(pParse, pTab->pSelect, pWhere, iCur);
|
||||
}
|
||||
|
||||
/* Resolve the column names in all the expressions in the
|
||||
|
||||
Reference in New Issue
Block a user