1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

More code cleanup and size reduction. (CVS 1256)

FossilOrigin-Name: 8e3eda2a909bd80b2b14ace36ab44303750a4409
This commit is contained in:
drh
2004-02-21 13:31:09 +00:00
parent 8eb2cce55c
commit 905793e249
9 changed files with 75 additions and 51 deletions

View File

@@ -182,7 +182,7 @@ void sqliteFinishTrigger(
** build the sqlite_master entry
*/
if( !db->init.busy ){
static VdbeOp insertTrig[] = {
static VdbeOpList insertTrig[] = {
{ OP_NewRecno, 0, 0, 0 },
{ OP_String, 0, 0, "trigger" },
{ OP_String, 0, 0, 0 }, /* 2: trigger name */
@@ -450,7 +450,7 @@ void sqliteDropTriggerPtr(Parse *pParse, Trigger *pTrigger, int nested){
*/
if( pTable!=0 && !nested && (v = sqliteGetVdbe(pParse))!=0 ){
int base;
static VdbeOp dropTrigger[] = {
static VdbeOpList dropTrigger[] = {
{ OP_Rewind, 0, ADDR(9), 0},
{ OP_String, 0, 0, 0}, /* 1 */
{ OP_Column, 0, 1, 0},