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

« back to all changes in this revision

Viewing changes to src/build.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-07-23 14:35:04 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070723143504-v52h2illx871jas3
Tags: 3.4.1-0ubuntu1
New upstream release. Closes LP: #127223.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
**     COMMIT
23
23
**     ROLLBACK
24
24
**
25
 
** $Id: build.c,v 1.432 2007/05/15 14:34:32 drh Exp $
 
25
** $Id: build.c,v 1.433 2007/07/02 19:31:27 drh Exp $
26
26
*/
27
27
#include "sqliteInt.h"
28
28
#include <ctype.h>
2239
2239
  SrcList *pTblName, /* Table to index. Use pParse->pNewTable if 0 */
2240
2240
  ExprList *pList,   /* A list of columns to be indexed */
2241
2241
  int onError,       /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */
2242
 
  Token *pStart,     /* The CREATE token that begins a CREATE TABLE statement */
 
2242
  Token *pStart,     /* The CREATE token that begins this statement */
2243
2243
  Token *pEnd,       /* The ")" that closes the CREATE INDEX statement */
2244
2244
  int sortOrder,     /* Sort order of primary key when pList==NULL */
2245
2245
  int ifNotExist     /* Omit error if index already exists */