aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Version 3.7.4 release candidate 4version-3.7.4drh2010-12-07
| | | FossilOrigin-Name: a586a4deeb25330037a49df295b36aaf624d0f45
* Work around restriction in Windows file locking.shaneh2010-12-07
| | | FossilOrigin-Name: fe441df9ba447d97571e919099846efa3ec87427
* Fix a bug in the demo "superlock" code preventing locks from being released ↵dan2010-12-07
| | | | | in some circumstances. FossilOrigin-Name: 65c393793ff5fdb935d5acfe5bdc3bca052f7314
* Version 3.7.4 release candidate 3drh2010-12-07
| | | FossilOrigin-Name: 11c74c0dae0e302f248ec4af6dc8a9376203b034
* Run some of the existing test scripts with optimizations disabled as part of ↵dan2010-12-07
| | | | | all.test. FossilOrigin-Name: b0634d2f909fb192d20315e59fa31fcd8f316541
* Add tests to tkt-80ba201079.test.dan2010-12-07
| | | FossilOrigin-Name: c370338c772bcd0797a23f83c3f6dc019640c6dd
* Fix the build so that it once again works with SQLITE_OMIT_SHARED_CACHEdrh2010-12-06
| | | | | and SQLITE_OMIT_AUTOVACUUM. FossilOrigin-Name: fabcb6b95e1d4059d1e6c6183f65846f6cbd5749
* Add the ability to disable constant factoring using sqlite3_test_control().drh2010-12-06
| | | | | | Add a TCL interface to this new capability and add tests cases to the TCL test scripts to actually use the new capability. FossilOrigin-Name: ad8bc68197f2b47435149c3dbc035f4e7210fc76
* Back out part of the previous change that was not really necessary in orderdrh2010-12-06
| | | | | to fix [80ba201079ea60], and which in fact serves no useful purpose. FossilOrigin-Name: fa9eef865f2f399870305bef82296db25e5b3e90
* Initialize all constants at the very beginning of a prepared statement.drh2010-12-06
| | | | | | | Do not allow constant initialization to occur once control flow has a chance to diverge, to avoid the possibility of having uninitialized registers. Ticket [80ba201079ea60807]. FossilOrigin-Name: c5c53152d68218bb5e7f922271dd7c50da2361c1
* Have sqlite3_blob_bytes() return 0 following a failed call to ↵dan2010-12-06
| | | | | sqlite3_reopen_blob(). FossilOrigin-Name: 476a8b492124d31e0656e61a6183ab55684c0bdf
* Version 3.7.4 release candidate 2.drh2010-12-04
| | | FossilOrigin-Name: 40756fe1f109da8bccac0ca28f05435792c62f81
* Fix a memory leak in fts3 that can occur in an OOM condition.dan2010-12-04
| | | FossilOrigin-Name: 507027b70f71689f77dee3e849ebc66a1c4c3166
* Remove an over-zealous call to memAboutToChange() from OP_MustBeInt.drh2010-12-03
| | | | | | OP_MustBeInt will never invalidate the Mem.z pointer so the memAboutToChange() call is not necessary. FossilOrigin-Name: 841cf7a7dbf0947cb7bde864609a8d3294f78689
* Version 3.7.4 release candidate 1drh2010-12-03
| | | FossilOrigin-Name: 2e800cb87ded1a080469ea46878ac61f945f789e
* Add tests for fts3 to backcompat.test.dan2010-12-03
| | | FossilOrigin-Name: b4eafde823bf30ebbb9232a88c9ddfa52f3cbabf
* Add the "valgrind" permutation. This is the same as veryquick.test except ↵dan2010-12-03
| | | | | that it omits the multi-process tests that do not work under valgrind. No changes to production or existing test code. FossilOrigin-Name: 49531300676b303f2ccec8d8d587b389c9eae98b
* Fix a bug causing fts3 to incorrectly return SQLITE_CORRUPT.dan2010-12-02
| | | FossilOrigin-Name: 099195b14829f375055345b8322905ccd073d442
* Exclude a test case from the inmemory_journal permutation of multiplex.test.dan2010-12-02
| | | FossilOrigin-Name: 474196d6452f5868a712a9b0116d5f64c90d67c1
* Fix a (harmless) valgrind warning in the rtree extension.dan2010-12-02
| | | FossilOrigin-Name: a94b9a395e0be9549d8c28e2b86b995c73c7b671
* Update misc7.test to account for EQP changes.dan2010-12-02
| | | FossilOrigin-Name: 917af565ac0c71c14fcba56632e687ed938a856c
* Changed multiplex shim's xFilesize to return an error on mismatched chunk size.shaneh2010-12-01
| | | | | Added test of same. FossilOrigin-Name: 6818c6e42faf233afa6b30799c5b425aa42d0783
* Make sure a test of multiplex shim doesn't fail if a file already exists.shaneh2010-12-01
| | | FossilOrigin-Name: 80de240a329d8df4aa1e437711bf6ed889d92c5f
* Added TCL test case for converting to WAL mode with multiple connections. shaneh2010-12-01
| | | | | Added exception to the test case for Windows for not being able to delete the open journal file. FossilOrigin-Name: 7061601f4935af483f4068d257d6f8a9c728fd33
* Change the type of a variable in struct SrcList so that it fits in a 100 ↵dan2010-12-01
| | | | | byte lookaside buffer on a 64-bit architecture. FossilOrigin-Name: 7df43f4892e628ecb8a83c5ed2dce5e24f6dd529
* Fix some warnings under MSVC in fts3 module.shaneh2010-12-01
| | | FossilOrigin-Name: c7771c0b22f2b45a47070cf84b9ecf1011e40404
* Add test file e_resolve.test.dan2010-12-01
| | | FossilOrigin-Name: 6858df9c72b1e9fb6c1a0050035b11822f87a5a7
* Avoid recursive calls to sqlite3VdbeMemRelease() when deleting VM frames ↵dan2010-12-01
| | | | | used by trigger programs. FossilOrigin-Name: 119ffe955eb1e8016cb8131a63bd17557f395f3f
* Add test file e_dropview.test.dan2010-11-30
| | | FossilOrigin-Name: 6197822cc8310fd7e1d7151683833e8b39fe631a
* Fix a warning in os_unix.c.dan2010-11-29
| | | FossilOrigin-Name: ee8dc8c87ed15b76ba437df23e1d7b1b7fa30296
* On *BSD systems, reduce the number of open connections used by wal3.test to ↵dan2010-11-29
| | | | | avoid running out of file-descriptors. FossilOrigin-Name: 0a3cba95a14ae7a24b2d268567a02d651ab278dc
* Fix compiler warnings discovered while building SQLite on ↵dan2010-11-29
| | | | | [http://www.devio.us/]. FossilOrigin-Name: 5602ec95aa2a74d0624bb6c7d53e7a0d35536253
* Add tests for very small cache-sizes (less than 10 pages).dan2010-11-29
| | | FossilOrigin-Name: 46b3fbdafe191cd0974cc3f46bc6aa52b3f1270e
* Add new test file e_droptrigger.test.dan2010-11-29
| | | FossilOrigin-Name: d23ef9b88c6705219e5138e50f0f351f6401c401
* Fix various compiler warnings.drh2010-11-26
| | | FossilOrigin-Name: c412f61229b6ab1ac90b932afd56f7c5e3ba1cfe
* Fix an uninitialized variable in fts3.c.dan2010-11-26
| | | FossilOrigin-Name: 3c3d076b42da36cd5413749ec022d0349325edfa
* Merge fts3 matchinfo() changes with trunk.dan2010-11-26
|\ | | | | FossilOrigin-Name: 7d660b91b748126c499285713bd0237530a1a601
| * Add a couple of comments to fts3_snippet.c.dan2010-11-26
| | | | | | FossilOrigin-Name: ad8df6c5ee0055cf1161a3b700d69dbe07d969bc
| * Merge with latest trunk changes.dan2010-11-26
| |\ | |/ |/| FossilOrigin-Name: 515cb3f4e5282551d300ba79c8885b8ca016a408
* | Fix a couple of compiler warnings in test_superlock.c. Add superlock.cdrh2010-11-24
| | | | | | | | | | to the Makefile.in used by the configure script. FossilOrigin-Name: 461f1a010f55e7da6b43ea65550066b1ca7abad0
* | Cherry-pick the lemon.c updates out of the lemon-update-2010 branch intodrh2010-11-23
| | | | | | | | | | the trunk. FossilOrigin-Name: 1541ae3fbd7b3d471e002c0ad14e7846f7ad9415
* | The previous check-in with changes to the max_page_count pragma was notdrh2010-11-23
| | | | | | | | | | quite correct. This check-in fixes the problem. FossilOrigin-Name: 30c26c3b13b29ce57683e91ac11641d4eb4d678f
* | Fix the max_page_count pragma so that it will not set to a value smallerdrh2010-11-23
| | | | | | | | | | | | than the current database size, as the documentation requires. Also, remove all occurances of atoi() from the core. FossilOrigin-Name: 2031974b606ef713b5f34522b2221470d98687c5
| * Add coverage tests (and associated fixes) for new matchinfo() code.dan2010-11-25
| | | | | | FossilOrigin-Name: 70495ceccc793d608930f59e330777f287ba1ede
| * Fix bugs in fts3 function matchinfo() when used with deferred tokens.dan2010-11-25
| | | | | | FossilOrigin-Name: ddc2b7ec2618b010c981ecfa05b3e53a9fac686f
| * Add code for the matchinfo 'longest common substring' feature.dan2010-11-24
| | | | | | FossilOrigin-Name: 71011a4f9baf09ec6935ad591145252bf3c286ed
| * Fix crashes that can occur when queries are run on an FTS4 table containing ↵dan2010-11-24
| | | | | | | | | | zero rows. FossilOrigin-Name: ed61fd20adef44d0f6b2345e0205b25f3641a15e
| * Remove some unused code from fts3. Add tests to fts3matchinfo.test.dan2010-11-24
| | | | | | FossilOrigin-Name: ae40b34cf7c24c9601bdfb5cbe5b20f05a376ea8
| * Experimental changes to fts3 function matchinfo().dan2010-11-23
|/ | | FossilOrigin-Name: 9cf0f2b76bc68c168e3fa861b7235f384db21d38
* Fix a typo in unixCurrentTimeInt64() preventing compilation with NO_GETTOD ↵dan2010-11-22
| | | | | defined. FossilOrigin-Name: 3df3e79b56821201b4f5ecd23f94d485745c48c3