Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a problem in the VM code generated for a CREATE INDEX statement. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e42f8bb1c26ba6d34c6940561d3bb462 |
User & Date: | dan 2013-11-13 16:34:24.587 |
Context
2013-11-14
| ||
19:29 | Fix various savepoint-related problems in bt. check-in: c633d85c33 user: dan tags: trunk | |
2013-11-13
| ||
16:34 | Fix a problem in the VM code generated for a CREATE INDEX statement. check-in: e42f8bb1c2 user: dan tags: trunk | |
15:21 | Fix an issue with using a bt cursor after sqlite4BtCsrDelete() has been called on it. check-in: f10991c423 user: dan tags: trunk | |
Changes
Changes to src/build.c.
︙ | ︙ | |||
2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 | }else{ assert( pName==0 ); assert( pStart==0 ); pTab = pParse->pNewTable; if( !pTab ) goto exit_create_index; iDb = sqlite4SchemaToIndex(db, pTab->pSchema); } assert( pTab!=0 ); assert( pParse->nErr==0 ); assert( IsVirtual(pTab)==0 && IsView(pTab)==0 ); /* If pCI==0 it means that we are dealing with a PRIMARY KEY or ** UNIQUE constraint. We have to invent our own name. */ | > > | 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 | }else{ assert( pName==0 ); assert( pStart==0 ); pTab = pParse->pNewTable; if( !pTab ) goto exit_create_index; iDb = sqlite4SchemaToIndex(db, pTab->pSchema); } sqlite4CodeVerifySchema(pParse, iDb); assert( pTab!=0 ); assert( pParse->nErr==0 ); assert( IsVirtual(pTab)==0 && IsView(pTab)==0 ); /* If pCI==0 it means that we are dealing with a PRIMARY KEY or ** UNIQUE constraint. We have to invent our own name. */ |
︙ | ︙ |