aboutsummaryrefslogtreecommitdiff
path: root/src
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
* Remove a redundant test for multiple output columns in a scalar subquery.drh2010-09-07
| | | FossilOrigin-Name: 657472bce2b2fe6f3d4bbead5301f658812b937d
* 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
* 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
* 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
* 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
* 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
* 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
* 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
* Make sqlite3_create_function() a special case of sqlite3_create_function_v2()drh2010-08-27
| | | | | in order reduce the number of code paths and simplify testing. FossilOrigin-Name: 4758d86d57aaafc058c98c8b485eae24e6547588
* Add the sqlite3_create_function_v2() API, a version of create_function that ↵dan2010-08-27
| | | | | allows a destructor to be specified. FossilOrigin-Name: 9a724dfbe822c77e76721abe3443c9cb018bb2e2
* Refactor the implementation of the scratch memory allocator. Add thedrh2010-08-27
| | | | | SQLITE_TESTCTRL_SCRATCHMALLOC interface to facilitate testing. FossilOrigin-Name: a3475ddfbe4526e6e0b334fd1376ee7c31508b80
* Remove unnecessary code from malloc.c. Enhance pcache1.c so that is triesdrh2010-08-27
| | | | | | | to reuse existing pages, rather than create new pages, when SQLite is under memory pressure. "Memory pressure" means that SQLITE_CONFIG_PAGECACHE memory is nearly exhausted or sqlite3_soft_heap_limit() has been reached. FossilOrigin-Name: 51049479a8577e03cc353f71f6e13a10c8323d91
* Add EXTERN macros before entry points in tclsqlite.c. This undoes thedrh2010-08-26
| | | | | change [b4d3e0d528c7d17fa3d05] on [2006-03-06 23:30:52]. FossilOrigin-Name: 8b2cf9d492901a65942d0e0b87c568d1539deece
* Simplification of changes for SQLITE_OMIT_WAL support in pager.c.shaneh2010-08-26
| | | FossilOrigin-Name: afb2484c64bf0cdec8240b9ecd0a794c44a63066
* Reinstate the "sqlite" alias for backwards compatibility (but leave drh2010-08-25
| | | | | it undocumented) but remove the PackageProvide for "sqlite". FossilOrigin-Name: 699cc6b48774be111f2e076cc1920ae79497dcea
* Disable the legacy "sqlite" command in the TCL interface. Provide onlydrh2010-08-25
| | | | | the "sqlite3" command. FossilOrigin-Name: 909b3d8862aeae04611969f5fc27d32a82026767
* Replicate asserts on unixOpen() to winOpen() in os_win.c.shaneh2010-08-24
| | | FossilOrigin-Name: 40526d8390896ccb883c45afa70e7adb568d174f
* Changes to support building with SQLITE_OMIT_WAL.shaneh2010-08-24
| | | FossilOrigin-Name: d1ed743b6ed07ad0ee7d466932c5a83caa9489ee
* Change sqlite3_open_v2() to return SQLITE_MISUSE if the combination of bitsdrh2010-08-24
| | | | | | | in the flags parameter is invalid. The documentation says the behavior in this situation is undefined - the documentation is unaltered by this code change. FossilOrigin-Name: 5e8101c5122336844ea920e6fbdace23e35b931f