Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add a #include to test_demovfs.c in an effort to get it to compile on Solaris. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8f06ea33c9070de8ea85368d76cf2623 |
User & Date: | drh 2011-05-05 13:53:46.541 |
Context
2011-05-05
| ||
13:54 | Change sqlite3_create_module() so that it avoids resetting the schema as long as preexisting modules are unchanged. (check-in: 8485855afc user: drh tags: trunk) | |
13:53 | Add a #include to test_demovfs.c in an effort to get it to compile on Solaris. (check-in: 8f06ea33c9 user: drh tags: trunk) | |
2011-05-04
| ||
17:23 | Merge vtab-conflict branch with trunk. (check-in: 8f9666af5f user: dan tags: trunk) | |
Changes
Changes to src/test_demovfs.c.
︙ | ︙ | |||
124 125 126 127 128 129 130 131 132 133 134 135 136 137 | #include <sys/types.h> #include <sys/stat.h> #include <sys/file.h> #include <sys/param.h> #include <unistd.h> #include <time.h> #include <errno.h> /* ** Size of the write buffer used by journal files in bytes. */ #ifndef SQLITE_DEMOVFS_BUFFERSZ # define SQLITE_DEMOVFS_BUFFERSZ 8192 #endif | > | 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | #include <sys/types.h> #include <sys/stat.h> #include <sys/file.h> #include <sys/param.h> #include <unistd.h> #include <time.h> #include <errno.h> #include <fcntl.h> /* ** Size of the write buffer used by journal files in bytes. */ #ifndef SQLITE_DEMOVFS_BUFFERSZ # define SQLITE_DEMOVFS_BUFFERSZ 8192 #endif |
︙ | ︙ |