Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in comment of prepare.c. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
333c3ffe6d4d2293d01958812b9c02b0 |
User & Date: | shaneh 2009-12-17 21:05:43.000 |
Context
2009-12-17
| ||
21:07 | In shell.c (CLI), modified local_getline() to remove '\r' as well as '\n' from end of lines. This provides consistency between MSVC and CYGWIN builds. (check-in: b1b48be1cf user: shaneh tags: trunk) | |
21:05 | Fix typo in comment of prepare.c. (check-in: 333c3ffe6d user: shaneh tags: trunk) | |
03:49 | Disable trace when recursively running commands while vacuuming. (check-in: 69a1348a3c user: drh tags: trunk) | |
Changes
Changes to src/prepare.c.
︙ | ︙ | |||
465 466 467 468 469 470 471 | db->mallocFailed = 1; } if( rc!=SQLITE_OK ) return; openedTransaction = 1; } /* Read the schema cookie from the database. If it does not match the | | | 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 | db->mallocFailed = 1; } if( rc!=SQLITE_OK ) return; openedTransaction = 1; } /* Read the schema cookie from the database. If it does not match the ** value stored as part of the in-memory schema representation, ** set Parse.rc to SQLITE_SCHEMA. */ sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&cookie); if( cookie!=db->aDb[iDb].pSchema->schema_cookie ){ pParse->rc = SQLITE_SCHEMA; } /* Close the transaction, if one was opened. */ |
︙ | ︙ |