SQLite

Check-in [4c3e137803]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix mistake in test_osinst.c.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | mistake
Files: files | file ages | folders
SHA1: 4c3e137803f86ec5a6c68bfaa29a2847ba48fd65
User & Date: dan 2010-05-13 09:32:31.000
Context
2010-05-13
09:40
Remerge mistaken test_osinst.c changes. (check-in: e8c10d3cf6 user: dan tags: trunk)
09:32
Fix mistake in test_osinst.c. (Closed-Leaf check-in: 4c3e137803 user: dan tags: mistake)
2010-05-12
19:02
(Moved to the mistake branch due to compile errors in test_osinst.c.) Change the vfs instrumentation code in test_osinst.c to make it easier to deploy. Add a vtab implementation for reading the binary log file format. (check-in: ee13c8849d user: dan tags: mistake)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/test_osinst.c.
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
******************************************************************************
**
** This file contains the implementation of an SQLite vfs wrapper that
** adds instrumentation to all vfs and file methods. C and Tcl interfaces
** are provided to control the instrumentation.
*/

/* Public API: */
int sqlite3_vfslog_new(const char *, const char *, const char *);
int sqlite3_vfslog_finalize(const char *);
int sqlite3_vfslog_register(sqlite3 *)

/*
** This module contains code for a wrapper VFS that causes a log of
** all (well, technically "most") VFS calls to be written into a nominated
** file on disk. The log is stored in a compressed binary format to 
** reduce the amount of IO overhead introduced into the application
** by logging.
**







<
<
<
<
<







11
12
13
14
15
16
17





18
19
20
21
22
23
24
******************************************************************************
**
** This file contains the implementation of an SQLite vfs wrapper that
** adds instrumentation to all vfs and file methods. C and Tcl interfaces
** are provided to control the instrumentation.
*/






/*
** This module contains code for a wrapper VFS that causes a log of
** all (well, technically "most") VFS calls to be written into a nominated
** file on disk. The log is stored in a compressed binary format to 
** reduce the amount of IO overhead introduced into the application
** by logging.
**