diff options
author | drh <drh@noemail.net> | 2003-06-03 01:47:11 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2003-06-03 01:47:11 +0000 |
commit | 4312db55d95877907bff257c95c41d463494de7c (patch) | |
tree | c9950495671dae76665e292ed3ca25b62925e410 /src/sqliteInt.h | |
parent | 1aa4965ae36182dea6f85117afd4db195b451f50 (diff) | |
download | sqlite-4312db55d95877907bff257c95c41d463494de7c.tar.gz sqlite-4312db55d95877907bff257c95c41d463494de7c.zip |
Additional testing of the ATTACH command with bug fixes for the new problems
that the tests found. (CVS 998)
FossilOrigin-Name: 3e8889d7ce5e99fc855526fc1bb62ddbe282bfc5
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index e25145d2a..4ab58d0cf 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.190 2003/06/02 23:14:13 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.191 2003/06/03 01:47:11 drh Exp $ */ #include "config.h" #include "sqlite.h" @@ -904,7 +904,7 @@ struct Trigger { IdList *pColumns; /* If this is an UPDATE OF <column-list> trigger, the <column-list> is stored here */ int foreach; /* One of TK_ROW or TK_STATEMENT */ - Token *pNameToken; /* Token containing zName. Use during parsing only */ + Token nameToken; /* Token containing zName. Use during parsing only */ TriggerStep *step_list; /* Link list of trigger program steps */ Trigger *pNext; /* Next trigger associated with the table */ |