~ubuntu-branches/ubuntu/hardy/sqlite3/hardy

« back to all changes in this revision

Viewing changes to src/analyze.c

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2007-05-17 02:01:42 UTC
  • mfrom: (1.1.8 upstream) (3.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20070517020142-o79d5uduuhfbtknv
Tags: 3.3.17-1
* New upstream release.
* Use minor version as well in sqlite3.pc (closes: #424235).

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
*************************************************************************
12
12
** This file contains code associated with the ANALYZE command.
13
13
**
14
 
** @(#) $Id: analyze.c,v 1.16 2006/01/10 17:58:23 danielk1977 Exp $
 
14
** @(#) $Id: analyze.c,v 1.17 2007/03/29 05:51:49 drh Exp $
15
15
*/
16
16
#ifndef SQLITE_OMIT_ANALYZE
17
17
#include "sqliteInt.h"
211
211
      }
212
212
    }
213
213
    sqlite3VdbeOp3(v, OP_MakeRecord, 3, 0, "aaa", 0);
214
 
    sqlite3VdbeAddOp(v, OP_Insert, iStatCur, 0);
 
214
    sqlite3VdbeAddOp(v, OP_Insert, iStatCur, OPFLAG_APPEND);
215
215
    sqlite3VdbeJumpHere(v, addr);
216
216
  }
217
217
}