aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Revised documentation for sqlite3_limit(). Added some evidence marks anddrh2010-09-07
| | | | | assert() statements to verify sqlite3_limit() behavior. FossilOrigin-Name: 883b9b7441593200def05d8a482bc92d3dc0e96b
* Example icon file (32x32x4) for new logo.shaneh2010-09-07
| | | FossilOrigin-Name: bd700794678613c1fb78ef9fcf2bcd6d48f70dc0
* Remove a redundant test for multiple output columns in a scalar subquery.drh2010-09-07
| | | FossilOrigin-Name: 657472bce2b2fe6f3d4bbead5301f658812b937d
* In the test scripts, changes instances of the TCL interface drh2010-09-06
| | | | | option "-has_codec" into the correct "-has-codec". FossilOrigin-Name: f53856a555403678ea8bd721a9fa1ae179240406
* Add test cases to e_select.test.dan2010-09-06
| | | FossilOrigin-Name: 9db26d5ef5a4c6f9fe0adf2ff306f6f07b6cc60c
* Remove proprietary information from the releasetest.tcl script and add itdrh2010-09-06
| | | | | to the public repository. FossilOrigin-Name: e1d4a87e4e195b3a217f6d8a15d6beceb7c22a53
* Add test file e_select.test.dan2010-09-04
| | | FossilOrigin-Name: 8b9d8c226e5d95584c1e61a796dc23b780a300cb
* Documentation enhancements for sqlite3_db_status(). Evidence marks ondrh2010-09-03
| | | | | the SQL function call intrface. FossilOrigin-Name: f06c7b1973d64a6a1a1db2b44df2a4eb0ece0077
* Improved documentation of the sqlite3_column_count() and sqlite3_data_count()drh2010-09-03
| | | | | interfaces. FossilOrigin-Name: 0593373d4bf4f3451b41810513fd12cd8ebd0395
* Add a few more subquery tests to e_expr.test.dan2010-09-03
| | | FossilOrigin-Name: 189cba0072dd0b90e064f889457921aeaeefda01
* Reduce the amount of memory taken up by WAL mmaped regions under Windows.shaneh2010-09-03
| | | FossilOrigin-Name: f213e133f6e69b0edd73d96142014bdcab9dfe41
* Fix a discrepancy between the documented behavior of SQLITE_DBCONFIG_LOOKASIDEdrh2010-09-03
| | | | | | and what it actually does. Also add evidence marks on the DBCONFIG_LOOKASIDE implementation. FossilOrigin-Name: f483be441323e1cb91516964cd6ab0edecad4366
* Move the test for an (illegal) scalar sub-query that returns more than one ↵dan2010-09-02
| | | | | column to earlier in SELECT processing in order to avoid an assert() that can happen later on. FossilOrigin-Name: a55842cfb56b659c88832dce9ce7bafb50258211
* Fix an off-by-one error in the scratch memory allocator.drh2010-09-02
| | | FossilOrigin-Name: 5a9591607a0a5ba4527bf2a90179651053244953
* Use sqlite3_mutex_notheld() instead of !sqlite3_mutex_held() insidedrh2010-09-02
| | | | | | of assert() statements since the former works when mutexing is disabled while the latter does not. FossilOrigin-Name: 2211486b69cf53f5efb1334aff8b403b26596102
* Add test case to verify the previous change is correct.dan2010-09-02
| | | FossilOrigin-Name: 2a5eed35b410fb6bd69242841c00700906f48d5f
* Fix the computation of the offset on the mmap() for the Nth shared memorydrh2010-09-02
| | | | | | | region. Because of the way shared memory is accessed, the old computation, though wrong, still happened to always get the right answer. Nevertheless, it is good to do the computation correctly. FossilOrigin-Name: 36397f62f2e3a62b4d5730b29c197449c6850cac
* Add tests for the EXISTS operator to e_expr.test.dan2010-09-02
| | | FossilOrigin-Name: 9f9a95cc80961b2733d34bd66cfccfbffb358ed6
* If MEM_STATUS is disabled, avoid holding the STATIC_MEM mutex when calling ↵dan2010-09-02
| | | | | the user-defined xMalloc method. Holding the mutex causes problems for memsys3 and memsys5. FossilOrigin-Name: 4f20f8ba73691c8a1dc33d2fcd1e793dd08f00a8
* Fix a few typos. Update evidence marks.shaneh2010-09-02
| | | FossilOrigin-Name: c90a68b77e03bb351a7781f1b9dea38f5f571dcf
* Identify additional requirements in the sqlite3_vfs object documentation.drh2010-09-01
| | | FossilOrigin-Name: 47064453c396d5204a851b8ec08d665e2b12228a
* Add tests to quota.test.dan2010-09-01
| | | FossilOrigin-Name: ec9af6ebd49505c4e5f90fb6450c71946cdc7291
* Call quota callback destructors from within sqlite3_quota_shutdown().dan2010-09-01
| | | FossilOrigin-Name: fb80c6f3de73ed832faaeb8c4d83e1354f132b39
* Boundary value fix to the descriptive comment at the top of test_quota.c.drh2010-09-01
| | | FossilOrigin-Name: 7f6072f0827e3aafd17f5f2bac9e3a3f8482e5f6
* Merge the test_quota.c module into the trunk.drh2010-09-01
|\ | | | | FossilOrigin-Name: 2e1a02026a0635fe05ba55a6d4d36dd7fd0ae8e9
| * Fix the TCL interface to test_quota.c so that it works with empty callbackdrh2010-09-01
| | | | | | | | | | scripts. FossilOrigin-Name: 19e95f63359589766da673aac99d19a355a92678
| * Variable name and comment changes to test_quota.c for clearer presentation.drh2010-09-01
| | | | | | FossilOrigin-Name: 38ed1992c800cb1d1ca67977d704df73d97c78d7
| * Make all private routines in test_quota.c begin with "quota".drh2010-09-01
| | | | | | | | | | Fix a test_quota.c segfault when setting a zero-quota. FossilOrigin-Name: c0d0fc3a1cca7ee28db8add745c71baf0545776c
| * Add the sqlite3_quota_dump test command. Add a destructor argument ondrh2010-09-01
| | | | | | | | | | the sqlite3_quota_set() interface. FossilOrigin-Name: 7a624b5ae2abff21bcbbb34af88d1c7656f3b729
| * Clean up comments in the test_quota.c source file.drh2010-09-01
| | | | | | FossilOrigin-Name: c1eec7dba698e5bad0870cb80079203f0fb89514
| * Update the quota shim so that when the same file is opened multiple times,drh2010-09-01
| | | | | | | | | | its size only counts against the quota once. FossilOrigin-Name: f5d263803084107389c5541face8d536b62fffe3
| * Add file test_quota.c, demonstrating how file-system quotas may be ↵dan2010-09-01
| | | | | | | | | | implemented as a VFS wrapper. FossilOrigin-Name: 383eb87bbf560b20682dd5be0e18ddadf762f415
* | Add an assert() with an evidence mark to show that automatically drh2010-09-01
|/ | | | | generated rowids are positive. FossilOrigin-Name: 740adca34e7fd309f0f761b8cc8581a9b7890793
* Fix some compiler warnings under MSVC.shaneh2010-09-01
| | | FossilOrigin-Name: afdc82a99eba260aed8ae2cca4bcec629f384098
* Ensure randomly generated rowids never go negative.shaneh2010-09-01
| | | FossilOrigin-Name: 631423677bd7043e99987edc633005443125181c
* Do not clear the internal "schema has changed" flag when performing a ↵dan2010-08-31
| | | | | savepoint rollback. The schema changes may not have taken place within the savepoint being rolled back. FossilOrigin-Name: c2a84430d3b6bb53b19af9294973575178290f93
* Changes to comments and type names in rtree.c.dan2010-08-31
| | | FossilOrigin-Name: 7c4f80ad272138cd4ab30455fae6a36498362933
* Fix a documentation typo reported on the mailing list.drh2010-08-31
| | | FossilOrigin-Name: c9fe0a2392ba4ae53d1dfcb986a67beeeb33519f
* Add evidence mark comments to source code. Add additional information to thedrh2010-08-31
| | | | | | documentation of sqlite3_release_memory(). Fix a minor inefficiency in mem1.c that was discovered while writing requirements tests. FossilOrigin-Name: 53b0c03fd33d2d8141fd386de5493fec64456042
* Add the "circle" test geometry callback to test_rtree.c. And tests for the same.dan2010-08-31
| | | FossilOrigin-Name: 169b8ba4be9c3941c742eded80dbacdcd2465bc4
* Remove unreachable branches to facilitate test coverage.drh2010-08-31
| | | FossilOrigin-Name: 86bcb9aab901713684f978479d29304cc9699e84
* Provide hints to the btree layer during the creation of transient tablesdrh2010-08-30
| | | | | | | when it is possible for those tables to use a hash rather than a binary tree. No use is current made of those hints, though assert() statement verify their accuracy. FossilOrigin-Name: 4fead8e714c7e50a9d246467e62bc846ef6180a0
* When generating sqlite3.h, append the contents of sqlite3rtree.h.dan2010-08-30
| | | FossilOrigin-Name: fc4d75370bad9021d01b76dbb1b8dde9ff223d2c
* Fix a problem in pagerfault.test uncovered by the previous change.dan2010-08-30
| | | FossilOrigin-Name: b6719ce32892a38b9b3dff07decdd6e94c01b3e2
* Add tests (and associated fixes) to restore coverage of rtree.c.dan2010-08-30
| | | FossilOrigin-Name: b06f4695bdab244d9c764c082cd434a764dc5c29
* Remove the sqlite3BtreeFactor() wrapper routine. All modules now calldrh2010-08-30
| | | | | sqlite3BtreeOpen() directly. FossilOrigin-Name: 0900e35348f4b9bf327d6ae2884c4ddbb6345d8d
* Add file sqlite3rtree.h.dan2010-08-30
| | | FossilOrigin-Name: e1d9ffce0f84469eeb926f50030cb772de98a652
* Updates to comments on the VDBE opcodes.drh2010-08-30
| | | FossilOrigin-Name: 49c05b4e08920797f3a5dd14c292e2275db61acb
* Fix problem with func3.test.dan2010-08-28
| | | FossilOrigin-Name: aec52959d047d7c7b280319a8c84dc009d2cbf91
* Add code to allow user-defined searches of r-tree tables. Still largely ↵dan2010-08-28
| | | | | untested. FossilOrigin-Name: 782ca3b716ee1ecb0dfb5ab6f21dfd73d41758e4