SQLite

Timeline
Login

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

200 most recent check-ins using file www/download.tcl version d59a0244

2010-01-30
23:08
The iInUseDB and iInUseMM variables do not need to be volatile. Leaf check-in: bb18f578 user: drh tags: branch-3.5.9
22:28
Always hold the MEM2 mutex when initially marking a pager as in use by its database connection. check-in: 622c1717 user: drh tags: branch-3.5.9
19:17
Avoid a race condition in the sqlite3_release_memory() logic within pager.c. check-in: a718e663 user: drh tags: branch-3.5.9
19:00
Remove all cache pages from the LRU list prior to removing the pager from the pager list when closing a pager. check-in: 9d13acc4 user: drh tags: branch-3.5.9
18:22
Add additional pagerMutexHeld() macros to better verify the correct operation of pager.c. check-in: c50e972f user: drh tags: branch-3.5.9
2010-01-29
21:23
Fix a missing mutex on page cache truncation during vacuum and auto-vacuum when SQLITE_ENABLE_MEMORY_MANAGEMENT is engaged. check-in: ea3b941a user: drh tags: branch-3.5.9
19:50
Additional changes suggested by Rob Stoddard. Closed-Leaf check-in: 228b8ad9 user: drh tags: branch-3.5.9
19:46
Changes to 3.5.9 proposed by Rob Stoddard. check-in: 5ed168c4 user: drh tags: branch-3.5.9
2008-05-26
18:41
Import 'rtree' extension. (CVS 5159) check-in: b104dcd6 user: danielk1977 tags: trunk
18:33
Fix the LIKE query optimizer so that it works with LIKE patterns ending in '@%' on NOCASE columns. Ticket #3139. (CVS 5158) check-in: 33548744 user: drh tags: trunk
2008-05-23
17:21
Fixed various typos, spelling, grammar, and formatting mistakes. Ticket #3124. (CVS 5157) check-in: 77d5a7aa user: shane tags: trunk
14:49
Add a test case of preparing a statement with an nBytes parameter of 0 and where the previous byte of the string is zero. Ticket #3134. (CVS 5156) check-in: 846a69ac user: drh tags: trunk
14:32
Do not references zSql(-1) if nBytes==0 in sqlite3_prepare(). Ticket #3134. (CVS 5155) check-in: 2d2c53e5 user: drh tags: trunk
2008-05-22
13:56
Ensure that the db.mallocFailed flag is cleared before sqlite3_errmsg16() returns. (CVS 5154) check-in: 0d47653a user: danielk1977 tags: trunk
2008-05-21
15:38
Add the "volatile" keyword to variables in the Pager structure used for synchronization when memory management is enabled. (CVS 5153) check-in: 25b9f3b9 user: drh tags: trunk
15:01
Update sqlite3_open*() documentation on shared cache/filename matching relationship. Ticket #3132. (CVS 5152) check-in: 235e384e user: shane tags: trunk
13:44
Fix the VACUUM command so that it does not modify the changes counts reported by sqlite3_changes() or sqlite3_total_changes(). Update documentation on sqlite3_changes() and sqlite3_total_changes() to state that "DELETE FROM table" records a change count of zero. (CVS 5151) check-in: f5d61d7d user: drh tags: trunk
2008-05-20
19:08
Fix OS/2 compilation for pre-C99 compilers. (CVS 5150) check-in: de8e6718 user: pweilbacher tags: trunk
18:43
Corrections to the documented behavior of sqlite3_last_insert_rowid(). (This change is unrelated to the problem reported by Bram de Jong. That comes next.) (CVS 5149) check-in: 894085a5 user: drh tags: trunk
15:44
Changes to the error handling policies of sqlite3_exec() to make them more consistent. Changes to the documentation on the error handling polices of sqlite3_exec() so that the documentation and code agree. (CVS 5148) check-in: a0376c79 user: drh tags: trunk
14:01
Added more DST boundary checks for 2006 and 2007. Added check for suspect Windows DST implementations and warning about them. Ticket #2322. (CVS 5147) check-in: 14226ff0 user: shane tags: trunk
13:17
Updated test case for Windows to get around problems in ticket #3129. (CVS 5146) check-in: 2faf69ca user: shane tags: trunk
07:05
Do not attempt to write a master journal name to the (non-existent) journal file in "no-journal" mode. Fix for #3127. (CVS 5145) check-in: ffd4e50a user: danielk1977 tags: trunk
2008-05-19
23:51
Improvements to API documentation. The sqlite3_exec() function now sets the result returned by sqlite3_errcode() when it receives an SQLITE_ABORT. (CVS 5144) check-in: f1df19ca user: drh tags: trunk
20:11
SQLite stores native file names and paths for the database file. Under Windows, (file normalize test.db) is expanded using UNIX type path separators which TCL recognizes interchangeably. However, this means that the path reported by sqlite3_shared_cache_report doesn't match which causes the test case to fail. Made minor change to test case to hopefully correct this on all platforms. (CVS 5143) check-in: 5ef61701 user: shane tags: trunk
15:54
Fix sqlite3Atoi64 to return true if handed a number of all zeros. The failure to do this is benign as sqlite3Atoi64() is current used, but that might change in the future so it is good to go ahead and fix the function to return the correct result. (CVS 5142) check-in: bc907875 user: drh tags: trunk
15:53
In the CLI, handle the compilation option -DOS_OS2=0 correctly. (CVS 5141) check-in: 70793be6 user: drh tags: trunk
15:37
Added test cases for corrupt 2-10 byte SerialTypeLen values. (CVS 5140) check-in: 97ed2dd1 user: shane tags: trunk
2008-05-16
15:40
Disable the column cache when coding values that will be passed to the xFilter() method of a virtual table, in case the xFilter() implementation modifies the type or encoding of the value. Ticket #3121. (CVS 5139) check-in: ecbc0d5d user: danielk1977 tags: trunk
15:24
Check that the encoding of values passed to sqlite3_bind_value() matches that of the database. (CVS 5138) check-in: e94a2883 user: danielk1977 tags: trunk
04:51
Add more version tags to files that lack them. Ticket #3120. (CVS 5137) check-in: 81a8c70e user: danielk1977 tags: trunk
2008-05-15
19:43
Add version tag comments to source files that lack them. Tickets #3118 and #3119. (CVS 5136) check-in: cf1fb2d8 user: drh tags: trunk
17:48
Add the "page_count" pragma. Returns a single integer - the number of pages in the specified database file. (CVS 5135) check-in: eb6985e6 user: danielk1977 tags: trunk
11:08
If a pager is already in the error-state when CommitPhaseOne() is called, exit early. (CVS 5134) check-in: 443cf105 user: danielk1977 tags: trunk
09:07
Fix a test script bug - not all database handles were being closed by ioerr5.test. (CVS 5133) check-in: 47652e7b user: danielk1977 tags: trunk
08:34
Do not write pages to disk to free memory after an IO error occurs. (CVS 5132) check-in: 10ea8287 user: danielk1977 tags: trunk
2008-05-14
16:18
Version 3.5.9 (CVS 5131) check-in: b6129f4c user: drh tags: trunk
2008-05-13
19:41
On instruction from DRH, only do malloc failure tests for O/S ops on non-Windows systems. Better test fixture code will be introduced in 3.6.0 to add this coverage back in for Windows. (CVS 5130) check-in: e4aab150 user: shane tags: trunk
16:41
Do a slow-path in GetVarint32() for varints that do not fit in 32 bits. This will only happen when trying to interpret a corrupt database file so speed is not critical. (CVS 5129) check-in: 6a6b9437 user: drh tags: trunk
13:27
Make the benign-fault setting recursive. Make all malloc failures during a rollback benign since there is nothing we can do about them. (CVS 5128) check-in: a9d1d931 user: drh tags: trunk
00:58
Update the pager so that it does not try to commit a transaction if there have been no changes to the database. (CVS 5127) check-in: f1ed3689 user: drh tags: trunk
00:57
Update the autoconf makefile so that it includes -lpthread. (CVS 5126) check-in: bd654ebd user: drh tags: trunk
2008-05-12
16:56
check that DosWrite() was successful before trying again (CVS 5125) check-in: 1ef6458b user: pweilbacher tags: trunk
16:17
Add "b" to fopen() in the hexio tests so that extra carriage returns are not inserted on win32 and OS/2. Test harness change only - no changes to the core SQLite code. (CVS 5124) check-in: 68cbc6b4 user: drh tags: trunk
12:41
Temporarily disable extended IO error code tests. (CVS 5123) check-in: f204df3c user: danielk1977 tags: trunk
12:39
Fix typo in documentation of sqlite3_step(). Ticket #3110. (CVS 5122) check-in: 4d397f57 user: drh tags: trunk
10:57
Make test function do_ioerr_test more robust. No code changes. (CVS 5121) check-in: f532692e user: danielk1977 tags: trunk
07:42
Modify logging code in test_osinst.c. No changes to production code. (CVS 5120) check-in: 85c54a16 user: danielk1977 tags: trunk
00:32
Use short timeout for locking operations by default to be more in sync with the other platforms. (CVS 5119) check-in: d00a015d user: pweilbacher tags: trunk
00:29
Correctly test DosWrite() for failure return code (CVS 5118) check-in: 3eff0ef2 user: pweilbacher tags: trunk
2008-05-11
17:22
Use memcpy() instead of casting to copy the content of a long long int into a double. Ticket #3101. (CVS 5117) check-in: 88e12cac user: drh tags: trunk
11:07
New test cases to verify that SQLite handles bound NaN, +Inf, and -Inf floating point values correctly. Improvements to the text->real conversion routine so that it generates +Inf and -Inf at appropriate times. Tickets #3101 and #3060. (CVS 5116) check-in: 3ff2f1cd user: drh tags: trunk
2008-05-09
19:38
Fix leaked filename in case DosOpen() fails. (CVS 5115) check-in: ecc6c739 user: pweilbacher tags: trunk
18:03
Re-enable tests that were accidentally disabled by (5112). (CVS 5114) check-in: bf45a3ab user: danielk1977 tags: trunk
18:03
Reformulate the constants for the minimum and maximum 64-bit signed integer to work better with some compilers. Ticket #3105. (CVS 5113) check-in: 18b1ee10 user: drh tags: trunk
16:57
Fix a problem with recovering from an IO error in exclusive-locking mode. (CVS 5112) check-in: 7a44fb96 user: danielk1977 tags: trunk
14:39
Do not clear the error code or error message in sqlite3_clear_bindings(). Ticket #3063. (CVS 5111) check-in: 069f4560 user: drh tags: trunk
14:17
Fix the ALTER TABLE RENAME algorithm so that it is not confused by comments in the CREATE TABLE statement. Ticket #3102. (CVS 5110) check-in: ab18b4e7 user: drh tags: trunk
13:47
Back out check-in (5108). The original isnan() implementation is preferred. Ticket #3101 and #3060. (CVS 5109) check-in: 2349ae75 user: drh tags: trunk
03:07
Change the implementation of sqlite3IsNaN() so that it works even if compiled using -ffinite-math-only. Tickets #3101 and #3060. (CVS 5108) check-in: 19ee2b33 user: drh tags: trunk
2008-05-08
16:51
Fix recently introduced bug in tester.tcl. (CVS 5107) check-in: 4b573d4e user: danielk1977 tags: trunk
15:58
Add extra instrumentation to test_osinst.c. Also the --binarylog option to the test scripts. (CVS 5106) check-in: 8a99efc0 user: danielk1977 tags: trunk
15:18
Use a 6-byte rather than an 8-byte encoding for integers between 17592186044416 and 140737488355327. Ticket #3100. (CVS 5105) check-in: 0a4d26de user: drh tags: trunk
13:54
Increment the version number. (CVS 5104) check-in: ed06d90d user: drh tags: trunk
01:11
Fix the new ioerr4.test so that it plays well with others. (CVS 5103) check-in: 75df2d3d user: drh tags: trunk
2008-05-07
19:11
Fix some problems with multi-file transactions in persistent journal mode. (CVS 5102) check-in: e98a7f87 user: danielk1977 tags: trunk
18:59
Added test cases for corrupt SerialTypeLen header values, and additional check to improve detection of corrupt values. (CVS 5101) check-in: 530c6360 user: shane tags: trunk
15:44
Modify the header comment in jrnlmode2.test. No code or test changes. (CVS 5100) check-in: ed728104 user: danielk1977 tags: trunk
15:42
Change the header comment in jrnlmode4.test. No changes to any code or tests. (CVS 5099) check-in: 0bf656a4 user: danielk1977 tags: trunk
14:49
If an error occurs within xAccess(), it should return -1. Remove an assert() that was preventing it from doing so. (CVS 5098) check-in: 3fbcef46 user: danielk1977 tags: trunk
13:28
Add a new I/O error test: ioerr4. (CVS 5097) check-in: c3ab1a7e user: drh tags: trunk
12:45
Fix a null-pointer dereference that can occur following a DISKFULL error while running VACUUM. (CVS 5096) check-in: 438d77a7 user: drh tags: trunk
12:29
Omit mutex variables in the pager when threadsafe is disabled. (CVS 5095) check-in: d15d0bba user: drh tags: trunk
07:13
Fix a problem causing the database to be truncated to the wrong size after an incremental-vacuum is performed on a database in full auto-vacuum mode. (CVS 5094) check-in: ed98df24 user: danielk1977 tags: trunk
02:42
Only look for config.h if the autoconf-based build is being used, and don't inline it into the amalgamation. (CVS 5093) check-in: 7df9ef2c user: mlcreech tags: trunk
2008-05-06
22:22
Fix most remaining testsuite failures on OS/2 by switching to exclusive locks that we meant to use from the start. (CVS 5092) check-in: 5f682c9a user: pweilbacher tags: trunk
22:15
The pathToDel element of the os2File structure should be in the local codepage instead of UTF-8 to make DosForceDelete() work. (CVS 5091) check-in: 76028b5e user: pweilbacher tags: trunk
21:42
Remove delOnClose flag from os2File structure, use pathToDel==NULL for the same check. (CVS 5090) check-in: 02e123bb user: pweilbacher tags: trunk
18:13
Fix a bug whereby the database file was not always being extended to its original size when rolling back an incremental-vacuum operation. (CVS 5089) check-in: 4a1ae9d0 user: danielk1977 tags: trunk
02:28
Add defines for _FILE_OFFSET_BITS and _LARGE_FILES if needed for large file support. Ticket #3094. (CVS 5088) check-in: 729e2f06 user: mlcreech tags: trunk
2008-05-05
22:52
Add AC_SYS_LARGEFILE to ensure large file support, update autotools-related files. Ticket #3094. (CVS 5087) check-in: 2b1e455c user: mlcreech tags: trunk
17:14
Fix recently introduced test script error causing a failure in incrblob_err.test. (CVS 5086) check-in: 5e7c8ebd user: danielk1977 tags: trunk
16:56
Better error messages when trying to open a large file using a version of SQLite that omits large file support. Tickets #3096 and #3094. (CVS 5085) check-in: bdd89cd2 user: drh tags: trunk
16:27
Do not segfault in the CLI if sqlite3_open() fails to create a database connection object. Ticket #3096. (CVS 5084) check-in: 0bec7ebf user: drh tags: trunk
16:23
If an IO error occurs while locking the database and checking the cache validity, unlock the database before returning. Ticket #3030. (CVS 5083) check-in: 4ad18091 user: danielk1977 tags: trunk
15:26
Avoid leaking page references after an IO error is encountered. (CVS 5082) check-in: 198c395b user: danielk1977 tags: trunk
13:23
Fix a couple of minor problems with transactions in virtual tables. (CVS 5081) check-in: 2275fc6e user: drh tags: trunk
12:09
Avoid leaking page references when database corruption is encountered. (CVS 5080) check-in: 270d47e8 user: danielk1977 tags: trunk
11:33
Fix to test code to build when ENABLE_IOTRACE is not defined. (CVS 5079) check-in: 8fa2bda4 user: danielk1977 tags: trunk
2008-05-02
14:23
Make sure that when a connection is blocking on a RESERVED lock that it continues after the lock is released. Ticket #3093. (CVS 5078) check-in: 3dc334aa user: drh tags: trunk
14:08
Add a test case for ticket #3093. (CVS 5077) check-in: 288a7655 user: drh tags: trunk
02:00
Add another test case to verify that ticket #3092 has been fixed. (CVS 5076) check-in: 1906d2da user: drh tags: trunk
2008-05-01
18:01
Fix a problem with journal files being created unnecessarily when doing an atomic write in exclusive access locking mode. Fix a test script problem. (CVS 5075) check-in: 70e70866 user: drh tags: trunk
17:16
Fix more compiler warnings. (CVS 5074) check-in: 59568844 user: drh tags: trunk
17:03
Fix harmless compiler warnings. (CVS 5073) check-in: 227a6f67 user: drh tags: trunk
02:47
Test versions of getVarint functions. The updates essentially utilize loop unrolling and some shifting/anding tricks to minimize the number of logical operations required. (CVS 5072) check-in: 682dc24d user: shane tags: trunk
2008-04-30
16:38
Add comment to speculate when setting journal_mode=OFF on VACUUM does not help performance. No changes to code. (CVS 5071) check-in: 9c8b4bab user: drh tags: trunk
15:55
Improved option handling in speedtest8.c. Added -quiet and -priority options. Added reporting of total user and system time. (CVS 5070) check-in: aa59974e user: shane tags: trunk
08:56
Fix test for buffer overrun in unixGettempname(). Fix for #3091. (CVS 5069) check-in: fc0ca647 user: danielk1977 tags: trunk
2008-04-29
15:38
Zero the per-pager temporary space allocation to avoid warnings from valgrind. (CVS 5068) check-in: f854ae57 user: drh tags: trunk
15:22
Fix a potential buffer overrun in sqlite3_mprintf() when a non-terminated string is passed to a "%s" format with a precision specifying the number of bytes to copy. (CVS 5067) check-in: 1f5b1841 user: drh tags: trunk
00:15
Always convert IEEE NaN into NULL. Ticket #3060. Add test cases to verify that this is happening. (CVS 5066) check-in: 9b07e59e user: drh tags: trunk
2008-04-28
20:35
Allow SQLITE_MAX_COLUMN to be set to zero at compile-time in order to disable the checks. Also SQLITE_MAX_EXPR_DEPTH. Ticket #3069. (CVS 5065) check-in: e6f71abb user: drh tags: trunk
20:27
Add test cases to verify that multiple virtual tables can be updated within a trigger and that xSync, xCommit, and xRollback are never called except following xBegin or xCreate. Ticket #3083. (CVS 5064) check-in: 76175199 user: drh tags: trunk
18:46
Make sure that transactions are started on all virtual tables that changes in a single statement, not just the first. Ticket #3083. Need to add test cases. (CVS 5063) check-in: 133b7ee5 user: drh tags: trunk
17:41
Modified Varint32 functions to disable code for single-byte handling as it is already handled by their respective macro forms. (CVS 5062) check-in: be10f5dd user: shane tags: trunk
17:12
Add tests to create and drop a virtual table during a recursive call from an application-defined function. Ticket #3080. (CVS 5061) check-in: d4d6eff3 user: drh tags: trunk
16:55
Change the implementation of the NaN recognition to be more cross-platform. Ticket #3089. (CVS 5060) check-in: 07fd9a8c user: drh tags: trunk
16:19
Fix a shared-cache mode problem triggered when sqlite3_open16() was used to open the second or subsequent connections to a utf-8 database. (CVS 5059) check-in: 20946bf6 user: danielk1977 tags: trunk
15:23
Work around a NaN bug in some versions of Tcl. (CVS 5058) check-in: 7bf8213c user: drh tags: trunk
13:02
Changes to test scripts to accommodate different architectures and different versions of Tcl. (CVS 5057) check-in: 8eb2c07c user: drh tags: trunk
12:54
Restore the #include of stdint.h removed in (5051). (CVS 5056) check-in: e96e8b9b user: drh tags: trunk
2008-04-27
22:48
Delete requirement F12764 as it has never been implemented and the same effect can be easily achieved by other means. Ticket #3085. (CVS 5055) check-in: fadeed99 user: drh tags: trunk
22:29
Fix the documentation to agree with long-standing behavior for the sqlite3_bind_parameter_name() interface on an ?NNN parameter. Ticket #2975. (CVS 5054) check-in: df9991d5 user: drh tags: trunk
22:19
Allow multiple occurrances of %include in lemon input files. Ticket #3001. (CVS 5053) check-in: f22fa11b user: drh tags: trunk
18:45
Fix the lemon parser generator so that it works again with the "error" symbol. Ticket #3079 (CVS 5052) check-in: 20ed7492 user: drh tags: trunk
18:40
Remove all references to sqlite3_intptr_t. (CVS 5051) check-in: 6a94d197 user: drh tags: trunk
2008-04-26
13:39
Use "(void)" function arguments in declarations instead of "()". Both are legal but some pedantic compilers complain about the latter. Ticket #3086. (CVS 5050) check-in: a4149ca3 user: drh tags: trunk
2008-04-25
12:25
Clarify some comments. No changes to code. (CVS 5049) check-in: 7f805392 user: drh tags: trunk
12:10
Add test cases to prove that ticket #3082 has been fixed. (CVS 5048) check-in: 776e7024 user: drh tags: trunk
00:08
Candidate fix for ticket #3082. Test cases needed. (CVS 5047) check-in: f6313311 user: drh tags: trunk
2008-04-24
22:57
Remove two more unused files. (CVS 5046) check-in: a400faf5 user: drh tags: trunk
19:15
Consolidated varint macro usage from btreeInt.h, vdbe.c, and vdbeaux.c into sqliteInt.h and made their use consistent. Slight improvements to varint32 macros. (CVS 5045) check-in: 0d04ccd9 user: shane tags: trunk
12:38
Fix a problem with the test scripts caused by not cleaning up the global tcl namespace. (CVS 5044) check-in: 44049239 user: danielk1977 tags: trunk
12:37
Fix an assert() failure that can occur if "journal_mode=off" is used in a build with the atomic-write optimization enabled. (CVS 5043) check-in: 709d17b1 user: danielk1977 tags: trunk
12:36
Fix a crash that can follow a malloc() failure in malloc7.test. (CVS 5042) check-in: 85eedad1 user: danielk1977 tags: trunk
09:49
Ensure that it is not possible to open either virtual table or view columns using the blob API. Ticket #3078. (CVS 5041) check-in: 6039328f user: danielk1977 tags: trunk
08:56
Minor change to comment on sqlite3_blob_read(). No code changes. Ticket #3072. (CVS 5040) check-in: adb4bc5a user: danielk1977 tags: trunk
08:36
Remove redundant assert() statement from vdbeaux.c. Ticket #3065. (CVS 5039) check-in: 3cba1166 user: danielk1977 tags: trunk
08:31
Add version comment to vdbeaux.c. No code changes. Ticket #3066. (CVS 5038) check-in: d667add4 user: danielk1977 tags: trunk
2008-04-23
23:03
We should better not pass open file handles to child processes, so add respective flag for DosOpen(). (CVS 5037) check-in: 1518e854 user: pweilbacher tags: trunk
2008-04-22
17:15
Always sync the journal file after zeroing out the header. (CVS 5036) check-in: 5896ae3d user: drh tags: trunk
14:31
Avoid non-contiguous writes when creating a journal header. (CVS 5035) check-in: dfacddbb user: danielk1977 tags: trunk
2008-04-19
20:53
Add some tests for journal_mode=off. Need to come up with a way of handling rollback attempts when there is no journal. (CVS 5034) check-in: e29b870e user: drh tags: trunk
20:34
Continuing work on journal_mode. Journal_mode=persist now appears to be working, though additional testing would be welcomed. (CVS 5033) check-in: 277e4099 user: drh tags: trunk
14:40
Comment and variable-name cleanup in where.c. Add testcase() macros to insure adequate test coverage of table-driven logic. (CVS 5032) check-in: adcef73b user: drh tags: trunk
14:06
Fix a typo in the documentation on sqlite3_open_v2(). (CVS 5031) check-in: f7b62daa user: drh tags: trunk
2008-04-18
11:31
Remove unused code from OP_IdxLt and OP_IdxGE. (CVS 5030) check-in: df02175e user: danielk1977 tags: trunk
10:25
Combine cases 3 and 4 in where.c, since case 4 is now a special case of case 3. (CVS 5029) check-in: 9a976819 user: danielk1977 tags: trunk
09:01
Allow OP_MoveGt and similar to use an array of registers instead of a serialized record. Modify one type of index range scan to use this. (CVS 5028) check-in: c448f15a user: danielk1977 tags: trunk
2008-04-17
20:59
Continuing progress on the journal_mode pragma. It still does not work. (CVS 5027) check-in: 4a72a7bb user: drh tags: trunk
19:14
Additional work on ticket #3015. The previous fix (check-in (4919)) did not appear to work in all cases and it disabled indexing in some places where it should not have. New test cases added to help insure that the current fix is better. (CVS 5026) check-in: 0d2e258e user: drh tags: trunk
17:03
Fix a typo in the documentation for sqlite3_bind_text. Ticket #3056. (CVS 5025) check-in: 79571e2c user: drh tags: trunk
17:02
Add the journal_mode pragma. This is currently just syntax - it is not operational. (CVS 5024) check-in: 8eaa0c71 user: drh tags: trunk
14:16
In exclusive locking mode, commit by zeroing the first 28 bytes of the journal file, not by truncating the journal. Overwriting is much faster than truncating. (CVS 5023) check-in: 8efb7f4f user: drh tags: trunk
2008-04-16
23:50
Add the -overwrite option to speedtest8.c. (CVS 5022) check-in: 6765ea52 user: drh tags: trunk
23:39
Clear a global variable in the incrblob.test script. Ticket #3062. (CVS 5021) check-in: 1c19854a user: drh tags: trunk
16:11
Fix the bind.test test script so that the tests for zeros embedded in strings work correctly for UTF-16 encoded databases. (CVS 5020) check-in: 7c094c80 user: drh tags: trunk
15:39
Version 3.5.8 (CVS 5019) check-in: 6a2e3eb2 user: drh tags: trunk
12:58
Add tests to verify that strings may use embedded zero characters. Ticket #3056. (CVS 5018) check-in: bb0f9e92 user: drh tags: trunk
12:57
Add speed-test scripts that also show EXPLAIN output. (CVS 5017) check-in: d11f5daf user: drh tags: trunk
00:49
Make sure the database connection mutex is held before calling sqlite3SafetyOn() or sqlite3SafetyOff(). Ticket #3059. (CVS 5016) check-in: d35dea05 user: drh tags: trunk
00:28
Back out the zero-terminator optimization introduced in check-in (4915). Ticket #3056. (CVS 5015) check-in: cce8deae user: drh tags: trunk
2008-04-15
18:50
Support UTF-8 filenames on OS/2 by converting them to and from the local codepage. Ticket 3052. (CVS 5014) check-in: cafa8ac2 user: pweilbacher tags: trunk
14:37
Increment the version number. (CVS 5013) check-in: a12fa025 user: drh tags: trunk
14:36
Do not attempt to omit unused columns of a view in an instead-of trigger since sometimes those columns can be used in ways that we do not expect. Ticket #3055. (CVS 5012) check-in: f5fc42e9 user: drh tags: trunk
12:14
Fix a code generator bug caused by the new CSE optimization. Add test cases to prevent a recurrence. (CVS 5011) check-in: d04246a4 user: drh tags: trunk
04:02
Fix a bug in the RTRIM collating sequence discovered while working on condition/decision branch coverage. Increase test coverage of the date/time functions. (CVS 5010) check-in: c5435f71 user: drh tags: trunk
02:36
Add out-of-range tests on the first parameter to sqlite3_limit(). Add the ability to record tests that have been skipped due to configuration limitations. (CVS 5009) check-in: b7ffc6f0 user: drh tags: trunk
00:02
Add a test case to cover the bug fixed in check-in (5007). (CVS 5008) check-in: 1863e87c user: drh tags: trunk
2008-04-14
23:13
Do not attempt to write to temporary database files that have never been opened. (CVS 5007) check-in: 7bb9a416 user: drh tags: trunk
22:57
Fix #3053: bashism (CVS 5006) check-in: 7217cece user: mlcreech tags: trunk
17:42
Fix alignment issue in instrumentation code. (CVS 5005) check-in: c9e0d625 user: danielk1977 tags: trunk
16:37
Do not set the pager to persistent error state if a call to OsAccess() fails. (CVS 5004) check-in: aa16eb57 user: danielk1977 tags: trunk
15:27
Make sure the page size in crash6.test does not exceed the maximum configured page size. (CVS 5003) check-in: 36b6610b user: drh tags: trunk
15:15
Free Mem.z buffers when a vdbe statement is reset. (CVS 5002) check-in: 0bedbe09 user: danielk1977 tags: trunk
14:34
Cleanup some #ifdefs to make their meaning clearly. No logical changes. (CVS 5001) check-in: b8bc5f3a user: drh tags: trunk
13:42
Disable auto_vacuum during the vacuum3 test. (CVS 5000) check-in: e2e1ca81 user: drh tags: trunk
01:00
Get the SQLITE_SECURE_DELETE compile-time option working again. Ticket #3050. (CVS 4999) check-in: 40ba51fd user: drh tags: trunk
2008-04-13
23:13
Fix build errors in test_osinst (CVS 4998) check-in: f0473997 user: mlcreech tags: trunk
2008-04-12
16:03
Modify speedtest8.c so that it can use the logging from test_osinst.c when HAVE_OSINST is defined. (CVS 4997) check-in: 7622d74a user: danielk1977 tags: trunk
13:06
Remove all instances of sprintf() from the FTS modules. Ticket #3049. (CVS 4996) check-in: 062bf5d4 user: drh tags: trunk
11:30
Modify test_osinst.c so that it only uses public interfaces. (CVS 4995) check-in: 3866a5da user: danielk1977 tags: trunk
10:53
Add a logfile option to test_osinst.c. (CVS 4994) check-in: f97d8945 user: danielk1977 tags: trunk
2008-04-11
21:20
Add the speedtest8inst1.c program for running speed tests with an instrumented VFS. (CVS 4993) check-in: baa8056c user: drh tags: trunk
19:37
Faster implementation of hexToInt that uses not branches. Ticket #3047. (CVS 4992) check-in: a70e9587 user: drh tags: trunk
19:18
Avoid the use of uninitialized variables in sqlite3GenerateRowIndexDelete. Ticket #3048. (CVS 4991) check-in: a93b7a34 user: drh tags: trunk
17:15
Remove a recently added assert() that is failing with certain compilers on 32-bit platforms. Ticket #3043. (CVS 4990) check-in: 03c0279d user: danielk1977 tags: trunk
17:11
Remove entries from the sqlite_stat1 table whenever an index is dropped. Related to #3033. (CVS 4989) check-in: 349aab42 user: danielk1977 tags: trunk
15:36
Additional reductions in the use of memset(). (CVS 4988) check-in: 38746c54 user: drh tags: trunk
14:56
Speed improvements by removing unnecessary memset() operations. Also: do not resize the opcode array of a virtual machine to its minimum size after code generation completes. The extra resize merely uses time. (CVS 4987) check-in: 25899555 user: drh tags: trunk
2008-04-10
18:44
Enhancements to the change counter tests. Ticket #3013. (CVS 4986) check-in: 1aaed6a4 user: drh tags: trunk
18:35
Correctly handle virtual tables that are created and dropped all within a single transaction. Ticket #2994. (CVS 4985) check-in: 0acb1b42 user: drh tags: trunk
17:27
Add the --ostrace and --ossummary options to tester.tcl. To log calls the vfs layer from within test scripts. (CVS 4984) check-in: e1322415 user: danielk1977 tags: trunk
17:14
Enhanced testing and documentation of sqlite3_result_error_code(). Ticket #2940. (CVS 4983) check-in: 5be56dbe user: drh tags: trunk
16:47
Disable nuisance warnings on borland compilers. ticket #2936. (CVS 4982) check-in: 1e094ecf user: drh tags: trunk
16:42
Make sure check-in (4976) also fixes ticket #2935. (CVS 4981) check-in: e3f798b1 user: drh tags: trunk
16:01
Give file scope to the sqlite3Apis constant. Ticket #3024. (CVS 4980) check-in: 30c50860 user: drh tags: trunk
15:12
Verify that a RAISE(ROLLBACK,...) works like RAISE(FAIL,...) when not inside a transaction. Ticket #3035. (CVS 4979) check-in: 87dc82d0 user: drh tags: trunk
14:57
Make sure all memory allocations are 8-byte aligned. Ticket #3040. Note that the mem3.c memory allocator returns 4-byte aligned memory allocations. But as mem3.c is intended for use in 32-bit embedded systems, we are not going to change that. (CVS 4978) check-in: d11e8e30 user: drh tags: trunk
14:51
Add source file test_osinst.c. A wrapper vfs with instrumentation capabilities. (CVS 4977) check-in: d9a6b653 user: danielk1977 tags: trunk
14:00
Make sure changes to virtual tables are counted the same as real tables. Ticket #3038. (CVS 4976) check-in: 55591fc4 user: drh tags: trunk
13:42
Fix to the "copy" method in the TCL interface. Ticket #3039. (CVS 4975) check-in: 6f07968e user: drh tags: trunk
13:38
Document the fast that the result flag combinations to sqlite3_open_v2() that are not defined in the documentation results in undefined behavior. Ticket #3037. (CVS 4974) check-in: b390e1f7 user: drh tags: trunk
13:33
First cut at optimizing single-row updates to use a one-pass algorithm. (CVS 4973) check-in: fba97f78 user: drh tags: trunk
13:32
Add three new test cases to speed4p.test. Two of the three do single-row updates based on rowid and on primary key. (CVS 4972) check-in: a2da7f9a user: drh tags: trunk
13:20
Fix a bug in the speed4p.test performance testing script. (CVS 4971) check-in: 80311594 user: drh tags: trunk
2008-04-08
03:09
Replace always-true condition with assertion (CVS 4970) check-in: be7f3240 user: mlcreech tags: trunk
03:07
Add test case for empty VFS list (CVS 4969) check-in: 6797814e user: mlcreech tags: trunk
2008-04-05
18:41
Add the sqlite3PutVarint32 routine as an alternative to sqlite3PutVarint. Gives 0.5% speed increase. (CVS 4968) check-in: b2517a7d user: drh tags: trunk