diff options
| author | Hans-Christoph Steiner <hans@eds.org> | 2013-08-13 15:43:01 -0400 | 
|---|---|---|
| committer | Hans-Christoph Steiner <hans@eds.org> | 2013-08-13 15:43:01 -0400 | 
| commit | 4228998fd796fa2f9e84fb73632e0a07cc7cd188 (patch) | |
| tree | 15b2336f351468fedd0c39e9de4ad905a686f3b0 /src/alter.c | |
| parent | bdee7cf7d974b2f70d5934786c5666006e7360be (diff) | |
| parent | 08119c361d1181b3e8f1abb429236e488a664753 (diff) | |
Merge tag 'upstream/2.2.1'
Upstream version 2.2.1
# gpg: Signature made Tue 13 Aug 2013 03:42:56 PM EDT using RSA key ID 374BBE81
# gpg: Good signature from "Hans-Christoph Steiner <hans@at.or.at>"
# gpg:                 aka "[jpeg image of size 5408]"
# gpg:                 aka "Hans-Christoph Steiner <hs420@nyu.edu>"
# gpg:                 aka "Hans-Christoph Steiner <hans@eds.org>"
# gpg:                 aka "Hans-Christoph Steiner <hans@guardianproject.info>"
# gpg:                 aka "Hans-Christoph Steiner <hansi@nyu.edu>"
# gpg:                 aka "Hans-Christoph Steiner <hans@guardianproject.info>"
Diffstat (limited to 'src/alter.c')
| -rw-r--r-- | src/alter.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/alter.c b/src/alter.c index 7f56ce7..a49d334 100644 --- a/src/alter.c +++ b/src/alter.c @@ -414,7 +414,7 @@ void sqlite3AlterRenameTable(    assert( pSrc->nSrc==1 );    assert( sqlite3BtreeHoldsAllMutexes(pParse->db) ); -  pTab = sqlite3LocateTable(pParse, 0, pSrc->a[0].zName, pSrc->a[0].zDatabase); +  pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]);    if( !pTab ) goto exit_rename_table;    iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);    zDb = db->aDb[iDb].zName; @@ -664,7 +664,7 @@ void sqlite3AlterFinishAddColumn(Parse *pParse, Token *pColDef){    ** If there is a NOT NULL constraint, then the default value for the    ** column must not be NULL.    */ -  if( pCol->isPrimKey ){ +  if( pCol->colFlags & COLFLAG_PRIMKEY ){      sqlite3ErrorMsg(pParse, "Cannot add a PRIMARY KEY column");      return;    } @@ -757,7 +757,7 @@ void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){    assert( pParse->pNewTable==0 );    assert( sqlite3BtreeHoldsAllMutexes(db) );    if( db->mallocFailed ) goto exit_begin_add_column; -  pTab = sqlite3LocateTable(pParse, 0, pSrc->a[0].zName, pSrc->a[0].zDatabase); +  pTab = sqlite3LocateTableItem(pParse, 0, &pSrc->a[0]);    if( !pTab ) goto exit_begin_add_column;  #ifndef SQLITE_OMIT_VIRTUALTABLE | 
