Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | bad assert |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | apple-osx |
Files: | files | file ages | folders |
SHA1: |
0c0150f2a349460d685e63be1a747d2b |
User & Date: | adam 2012-04-02 23:42:48.936 |
Context
2012-04-03
| ||
19:43 | Cherrypick commit [1d5e744cc6] from the trunk in order to avoid leaving a file-descriptor open in test scripts capi3.test and capi3c.test. This is the version of SQLite that ships by default on the original Mountain Lion release. (check-in: 86b8481be7 user: dan tags: apple-osx, mountain-lion) | |
2012-04-02
| ||
23:42 | bad assert (check-in: 0c0150f2a3 user: adam tags: apple-osx) | |
23:35 | Merge in latest changes, autologging options, read only file system wal support, test config conditionalization, WAL frame write prebuffering (check-in: d51c086e5c user: adam tags: apple-osx) | |
Changes
Changes to src/wal.c.
︙ | ︙ | |||
2698 2699 2700 2701 2702 2703 2704 | sqlite3_int64 iOffset /* Byte offset at which to write */ ){ int rc; /* Result code from subfunctions */ void *pData; /* Data actually written */ #if defined(SQLITE_WRITE_WALFRAME_PREBUFFERED) void *aFrame; | < | 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 | sqlite3_int64 iOffset /* Byte offset at which to write */ ){ int rc; /* Result code from subfunctions */ void *pData; /* Data actually written */ #if defined(SQLITE_WRITE_WALFRAME_PREBUFFERED) void *aFrame; aFrame = p->aFrameBuf; #else u8 aFrame[WAL_FRAME_HDRSIZE]; /* Buffer to assemble frame-header in */ #endif #if defined(SQLITE_HAS_CODEC) if( (pData = sqlite3PagerCodec(pPage))==0 ) return SQLITE_NOMEM; |
︙ | ︙ |