aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Add assert() statements to demonstrate that memory allocations are alwaysdrh2010-09-11
| | | | | aligned to an 8-byte boundary (unless SQLITE_4_BYTE_ALIGNED_MALLOC is defined). FossilOrigin-Name: 305cc4e6c1164b1ede0c3177e3c0f9b8644df0f6
* A further correction to the sqlite3_create_function() interface documentation.drh2010-09-10
| | | FossilOrigin-Name: c65583dbc7203132010d223cce205f007a50c9ee
* Updates to the documentation on the sqlite3_create_function() family ofdrh2010-09-10
| | | | | interfaces. FossilOrigin-Name: 9d277e0b82ff8759369b43ee5f2e5628724a84bd
* Further updates to the sqlite3_pcache_methods documentation, plus the additiondrh2010-09-09
| | | | | of a few evidence marks related to pcache. FossilOrigin-Name: 34edb54bb03ad4e54f2e4de12d767e6fa8822ba4
* Updates to the sqlite3_pcache_methods documentation.drh2010-09-09
| | | FossilOrigin-Name: b21425c4045883fffa46af632e77cf708d862927
* Updates to the documentation of the sqlite3_column_xxxx() family of drh2010-09-08
| | | | | | interfaces. Enhance sqlite3_column_blob() so that it always returns a NULL pointer for a zero-length blob. FossilOrigin-Name: a932fab299b3c32dea4d08729e9fab3735631e88
* Improved documentation of SQLITE_THREADSAFE and sqlite3_column_text() anddrh2010-09-08
| | | | | evidence marks for each. FossilOrigin-Name: 0d7a53894866e536616e78473d253a9e9c29b1bc
* Updates to the documentation on the VFS xOpen method.drh2010-09-07
| | | FossilOrigin-Name: 1719cb8f49bb138adcf8913a2d042f9e1360d78a
* Update the sqlite3_limit() documentation to explain that SQLITE_LIMIT_VDBE_OPdrh2010-09-07
| | | | | is not enforced. FossilOrigin-Name: 17be9beeab273a0fa84e107c674aee4cd83e6f79
* 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