1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Changes to the trigger.c module that facilitate full coverage testing. (CVS 6621)

FossilOrigin-Name: 567ccc68cc8c73b952a91c71a0e00b08bb25c689
This commit is contained in:
drh
2009-05-09 00:18:38 +00:00
parent 50c55a90d5
commit 9ab4c2e880
4 changed files with 49 additions and 33 deletions

View File

@@ -12,7 +12,7 @@
** This file contains routines used for analyzing expressions and
** for generating VDBE code that evaluates expressions in SQLite.
**
** $Id: expr.c,v 1.432 2009/05/06 18:57:10 shane Exp $
** $Id: expr.c,v 1.433 2009/05/09 00:18:38 drh Exp $
*/
#include "sqliteInt.h"
@@ -866,6 +866,7 @@ void sqlite3TokenCopy(sqlite3 *db, Token *pTo, const Token *pFrom){
pTo->n = pFrom->n;
pTo->z = (u8*)sqlite3DbStrNDup(db, (char*)pFrom->z, pFrom->n);
pTo->dyn = 1;
pTo->quoted = pFrom->quoted;
}else{
pTo->z = 0;
}