spacer
  • bugs
  • changes
  • contrib
  • cvs repository
  • documentation
  • download
  • faq
  • home
  • license
  • news
  • quick start
  • support
  • syntax
  • timeline
  • wiki
sqlite - Timeline
Not logged in
[Honeypot]  [Browse]  [Home]  [Login] 
[Reports]  [Search]  [Ticket]  [Wiki] 
  [RSS] 
Tuesday, 2007-Apr-03
10:21 * Wiki page TheAmalgamation edited by drh (diff)
07:39 » Create ticket #2283: Compile warning by VCToolkit2003 (By anonymous)
01:34 Changes to ticket #2278 (By anonymous)
Monday, 2007-Apr-02
22:19 Check-in [3805]: Fix to Makefile.in so that "make test" works. (By drh)
19:09 2 changes to ticket #2278 (By anonymous)
18:06 Check-in [3804]: Do not use the second parameter to gettimeofday() on unix. Pass it a NULL. (By drh)
17:54 Check-in [3803]: Fix a union initializer so that it works with the Borland compiler. (By drh)
17:31 Attachment to ticket #2282: 943 bytes sqlite-trigger-test.sql (By anonymous)
17:30 × Create ticket #2282: Update on view with no matching trigger does not raise error (By anonymous)
16:46 Check-in [3802]: Add a different form of I/O tests. So far has failed to expose new bugs. (By danielk1977)
16:45 Check-in [3801]: If preprocessor macro OS_OTHER is defined, then ignore OS_UNIX, OS_WIN, and OS_OS2. This makes it easier to add proprietary backends.. (By drh)
16:40 Check-in [3800]: Provide a compile-time option to enable exclusive access mode by default. (By drh)
Version 3.3.14
15:31 ¤ Milestone [3799]: Version 3.3.14
15:29 Check-in [3798]: Changes to the download page. (By drh)
15:04 Check-in [3797]: Update the build scripts and the homepage in preparation for version 3.3.14. (By drh)
14:56 * Wiki page TheAmalgamation edited by drh (diff)
14:35 * Wiki page SizeOfSqlite edited by drh (diff)
14:19 Check-in [3796]: Cover an extra case in sqlite3PagerMovepage(). (By danielk1977)
14:09 Fixed ticket #2281, was active. Plus other changes. (By drh)
12:29 Check-in [3795]: Fix for #2281. This was a problem with the test-case only. (By danielk1977)
12:28 Check-in [3794]: Cover a corrupt-db case in pager.c. (By danielk1977)
12:22 Check-in [3793]: In the amalgamation, put date.c before os.c so that the time_t typedef can be correctly resolved by windows compilers. (By drh)
11:22 Check-in [3792]: If an IO error is encountered on a commit, close the journal so that it persists and can (hopefully) rollback the failed transaction later. (By drh)
11:08 Check-in [3791]: Correctly handle the obscure case of a read-only hot-journal file. (By danielk1977)
05:07 Check-in [3790]: Fix a resource leak introduced by the change-counter optimisation. Also add some test coverage. (By danielk1977)
03:10 » Create ticket #2281: "CFLAGS=-DSQLITE_DEFAULT_FILE_FORMAT=4" causes alter2.test to fail (By anonymous)
00:53 Check-in [3789]: Update the version number and change comments in preparation for the release of 3.3.14. (By drh)
Sunday, 2007-Apr-01
23:49 Check-in [3788]: Fix some warnings about unused and uninitialized variables. (By drh)
18:46 Check-in [3787]: Make unix builds threadsafe by default. (By drh)
12:05 * Wiki page HowToCompile edited by drh (diff)
01:57 Check-in [3786]: Fix typos in the amalgamation builder script. (By drh)
Saturday, 2007-Mar-31
23:57 * Wiki page SizeOfSqlite edited by drh (diff)
22:58 * Wiki page HowToCompile edited by drh (diff)
22:34 Check-in [3785]: Improvements to the output of the speed tests. (By drh)
22:33 Check-in [3784]: Remove unreachable code from util.c. (By drh)
22:29 Check-in [3783]: Add the amalgamation generator to the makefile. (By drh)
16:29 Check-in [3782]: Fix the amalgamation so that it can be compiled with REDEF_IO enabled. (By drh)
15:28 Check-in [3781]: Increase test coverage by statically defining SQLITE_BIGENDIAN and related macros for ix86 platforms. Still a run-time test for other architectures. Need to add additional cases to cover other popular processors. (By drh)
15:02 Check-in [3780]: Improved test coverage for printf.c. (By drh)
13:00 Check-in [3779]: The XFER optimization works if the target table lacks an integer primary key and is not empty as long as it has no indices. It always has and continues to work if the target table was empty. (By drh)
10:00 Check-in [3778]: More coverage for pager.c. (By danielk1977)
03:59 Check-in [3777]: Fix a long-standing memory leak in the hash table. The leak only appears following a malloc failure of a hash that copies its keys, which rarely happens and so we have not previously noticed it. (By drh)
02:36 Check-in [3776]: Fix a large memory leak in the btree layer that occurs following an I/O error when in shared cache mode. (By drh)
01:34 Check-in [3775]: Fix memory leaks in WHERE clause processing and in TRIGGER parsing. (By drh)
00:54 2 changes to ticket #2280 (By drh)
Friday, 2007-Mar-30
22:37 » Create ticket #2280: Check constraint failure message should include field name (By anonymous)
20:46 Check-in [3774]: Remove vestiges of SQLITE_PROTOCOL from the test scripts. (By drh)
20:43 Check-in [3773]: Remove vestiges of the SQLITE_PROTOCOL error. (By drh)
20:40 Check-in [3772]: Fix a memory leak that occurs after a malloc failure in trigger parsing. (By drh)
18:58 Changes to ticket #2279 (By rdc)
18:42 Check-in [3771]: Fix a memory leak in multi-database commit. Also enhance a comment that explains why a particular valgrind error is harmless. (By drh)
18:21 Check-in [3770]: Coverage testing for a few lines in pager.c. (By danielk1977)
17:24 Changes to ticket #930 (By anonymous)
17:21 Attachment to ticket #930: 57089 bytes sqlit307.dif (By anonymous)
17:19 Changes to ticket #930 (By anonymous)
17:18 Check-in [3769]: Remove asserts on the existing of journal files in pager - asserts that are not valid for certain kinds of simulated I/O errors or for async I/O. (By drh)
17:17 Check-in [3768]: Get the memleak.test script working again after recent changes. (By drh)
17:11 Check-in [3767]: Coverage tests for some pragmas. (By danielk1977)
16:01 Check-in [3766]: Always enable exclusive access mode for TEMP databases. This cannot be changed. The locking_mode pragma has not effect on the TEMP database. (By drh)
14:56 Check-in [3764]: Coverage improvements for where.c. (By danielk1977)
14:56 Check-in [3765]: Coverage improvements for where.c. (By danielk1977)
14:46 Check-in [3763]: Tease apart the two phases of pager commit. (By drh)
14:06 Check-in [3762]: Refactoring the btree and pager routines into distinct two-phase commit routines. We've always done a two-phase commit - this change is just making that more apparent in the code. (By drh)
13:35 Check-in [3761]: Make yypMinor available to the stack overflow callbacks in lemon generated parsers. This does not effect SQLite. (By drh)
13:01 Check-in [3760]: Avoid using the "clock" command in test scripts since it is a proc in Tcl8.5 and is thus not available to testfixture. (By drh)
11:29 Check-in [3759]: Move the sqlite3_temp_directory global variable out of the OS porting layer and into main.c so that it is more accessible to non-standard OS porting layers. (By drh)
11:23 Check-in [3758]: Remove the anonymous union from the sqlite3_value structure since some compilers are unable to deal with it. (By drh)
11:12 Check-in [3757]: Comment changes in btree.c and added a missing "else" in pragma.c. (By drh)
09:13 Check-in [3756]: Test coverage a few extra lines in where.c. (By danielk1977)
07:10 Check-in [3755]: Extra test cases to improve coverage of main.c. (By danielk1977)
06:31 Changes to ticket #2173 (By anonymous)
05:37 Changes to ticket #1802 (By anonymous)
05:37 Changes to ticket #2041 (By anonymous)
05:36 Changes to ticket #2270 (By anonymous)
00:39 Changes to ticket #2136 (By anonymous)
Thursday, 2007-Mar-29
21:37 Defer ticket #2227, was active. (By drh)
21:36 Changes to ticket #2227 (By drh)
21:11 Closed ticket #2279, was active. Plus other changes. (By drh)
21:11 Changes to ticket #2279 (By drh)
21:02 Changes to ticket #2207 (By drh)
20:37 × Create ticket #2279: sqlite3_exec NULL pointer crash (By anonymous)
20:20 Fixed ticket #2173, was active. Plus other changes. (By drh)
20:19 Check-in [3754]: Assume any return code from fcntl() other than -1 is success. Formerly we only assumed that 0 was success. Ticket #2173. (By drh)
20:14 Fixed ticket #2175, was active. Plus other changes. (By drh)
20:13 Check-in [3753]: Fix to token destructors in Lemon. This does not impact SQLite. Ticket #2175. (By drh)
20:09 Closed ticket #2170, was active. Plus other changes. (By drh)
20:08 Changes to ticket #2170 (By drh)
20:06 Closed ticket #2169, was active. Plus other changes. (By drh)
20:06 Changes to ticket #2169 (By drh)
20:04 Changes to ticket #2136 (By drh)
18:46 Fixed ticket #2135, was active. Plus other changes. (By drh)
18:46 Check-in [3752]: Add the sqlite3_clear_bindings() API to the loadable extension interface. Ticket #2135. (By drh)
18:41 Check-in [3751]: Buffer updates per-transaction rather than per-update. If lots of updates happen within a single transaction, there was a lot of wasted encode/decode overhead due to segment merges. This code buffers updates in memory and writes out larger level-0 segments. It only works when documents are presented [...] (By shess)
18:34 Changes to ticket #2231 (By drh)
18:32 Changes to ticket #2241 (By drh)
18:31 Changes to ticket #2233 (By drh)
18:19 Check-in [3750]: Change the name of PAGER_SECTOR_SIZE to SQLITE_DEFAULT_SECTOR_SIZE. Make the new OS-layer interface routine for finding sector size optional. (By drh)
17:58 Changes to ticket #2258 (By drh)
17:57 Fixed ticket #2276, was active. Plus other changes. (By drh)
17:57 Check-in [3749]: Make sure the strftime() date conversions put in leading zeros correctly. Ticket #2276. (By drh)
17:35 Closed ticket #2255, was active. Plus other changes. (By danielk1977)
17:28 Check-in [3748]: Avoid calling OsDelete() on journal files when they are opened for temporary databases. Fix for #2255. (By danielk1977)
17:07 Check-in [3747]: Add a couple of test cases to improve coverage testing. (By danielk1977)
16:34 Changes to ticket #2269 (By rdc)
16:33 Closed ticket #2275, was active. Plus other changes. (By drh)
16:31 Changes to ticket #2278 (By drh)
16:30 Check-in [3746]: Don't call ctype functions on hi-bit chars. Some platforms raise assertions when this occurs, and it's almost certainly not the right thing to do in the first place. (By shess)
16:17 * Wiki page SqliteVersusDbstar edited by anonymous (diff)
15:52 Changes to ticket #2275 (By anonymous)
15:26 × Create ticket #2278: sqlite does not support mixed endian between pxa27x and i386 platforms (By anonymous)
15:00 Check-in [3745]: Assume the malloc-failed flag cannot already be set when calling sqlite3_errmsg[16](). (By danielk1977)
15:00 × Create ticket #2277: Incorrect usage of CRITICAL_SECTION and TLS on Windows (By anonymous)
14:28 Changes to ticket #2275 (By anonymous)
14:18 × Create ticket #2276: strftime %f zero padding problem (By anonymous)
13:35 Check-in [3744]: Fix a bug in XFER optimization introduced by check-in [3736]. (By drh)
12:24 Check-in [3743]: Explicitly test some error cases that up until now have not been checked. (By danielk1977)
12:19 Check-in [3742]: Explicitly test some error cases that up until now have not been checked. (By danielk1977)
11:54 Changes to ticket #2275 (By drh)
10:07 * Wiki page
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.