sqlite/src
drh ff1590ee00 Write sqlite3_initialize() calls in sqlite3_malloc() within
SQLITE_OMIT_AUTOINIT.  Ticket #3217. (CVS 5408)

FossilOrigin-Name: 4961b0bbe8b9cf5fb27de7f2514e8ab399a00134
2008-07-14 12:52:53 +00:00
..
alter.c Fix a comment in alter.c. No changes to code. (CVS 5347) 2008-07-07 12:44:58 +00:00
analyze.c Use a vdbe memory cell to allocate the space required for vdbe cursors. (CVS 4912) 2008-03-25 09:47:35 +00:00
attach.c Continuing work on the new memory allocation subsystem. 2008-06-15 02:51:47 +00:00
auth.c Remove unneeded pSchema field from the Expr structure. (CVS 4434) 2007-09-18 15:55:07 +00:00
bitvec.c Add a mode to the sqlite3_test_control() interface to register hooks called at the beginning and end of "benign malloc failure" blocks. This allows malloc() failure testing to be done using public APIs only. (CVS 5254) 2008-06-20 14:59:51 +00:00
btmutex.c Improvements to test coverage in the lemon-generated parser and in the 2008-01-23 12:52:40 +00:00
btree.c Remove leftover debugging commands (breakpoint and btree_breakpoint) from 2008-07-12 14:52:20 +00:00
btree.h Detect and handles the case where a row is modified or deleted while it 2008-07-11 21:02:53 +00:00
btreeInt.h Remove leftover debugging commands (breakpoint and btree_breakpoint) from 2008-07-12 14:52:20 +00:00
build.c Remove obsolete code from select.c, including the "affinity" parameter 2008-07-08 23:40:20 +00:00
callback.c Improved enforcement of the SQLITE_LIMIT_LENGTH limit. (CVS 5368) 2008-07-08 14:52:07 +00:00
complete.c Progress toward implementation of sqlite3_config() and a rework of the 2008-06-13 18:24:27 +00:00
date.c Implement the 'CONFIG_SINGLETHREAD' and 'CONFIG_MULTITHREAD' configuration modes. (CVS 5234) 2008-06-18 17:09:10 +00:00
delete.c Remove obsolete code from select.c, including the "affinity" parameter 2008-07-08 23:40:20 +00:00
expr.c Additional test coverage in select.c and expr.c. (CVS 5381) 2008-07-09 01:39:44 +00:00
fault.c Fix a bug in the KEYINFO handling within select.c. Change the OP_Move 2008-06-22 12:37:57 +00:00
func.c Added macros to convert between 32-bit ints and 64-bit ptrs to avoid compiler warnings. (CVS 5378) 2008-07-08 22:28:48 +00:00
global.c Improved enforcement of the SQLITE_LIMIT_LENGTH limit. (CVS 5368) 2008-07-08 14:52:07 +00:00
hash.c Add a mode to the sqlite3_test_control() interface to register hooks called at the beginning and end of "benign malloc failure" blocks. This allows malloc() failure testing to be done using public APIs only. (CVS 5254) 2008-06-20 14:59:51 +00:00
hash.h Add internal locking to the test_async.c backend. So that more than one connection may be used from within a single process. (CVS 4396) 2007-09-04 14:31:47 +00:00
hwtime.h Added x86_64 version of hwtime function. Ticket #3156. (CVS 5208) 2008-06-12 02:24:38 +00:00
insert.c Remove obsolete code from select.c, including the "affinity" parameter 2008-07-08 23:40:20 +00:00
journal.c Fix a problem with journal files being created unnecessarily when doing 2008-05-01 18:01:46 +00:00
legacy.c Continuing work on the new memory allocation subsystem. 2008-06-15 02:51:47 +00:00
loadext.c Fix a compilation bug with SQLITE_OMIT_AUTOINIT. (CVS 5366) 2008-07-08 14:17:35 +00:00
main.c Additional test coverage for the btree module. Remove the failsafe() macro 2008-07-11 16:15:17 +00:00
malloc.c Fix a bug introduced by check-in (5406). Ticket #3216. (CVS 5407) 2008-07-14 12:38:20 +00:00
md5.c Add more version tags to files that lack them. Ticket #3120. (CVS 5137) 2008-05-16 04:51:54 +00:00
mem1.c Handle a real system malloc() failure in mem1.c. (CVS 5281) 2008-06-23 15:10:24 +00:00
mem2.c Enhancements to the testing logic for malloc and mutex. Only permit one 2008-07-10 18:13:42 +00:00
mem3.c Fix mem3.c (broken by (5320)). (CVS 5321) 2008-06-27 14:05:24 +00:00
mem4.c Implement the 'CONFIG_SINGLETHREAD' and 'CONFIG_MULTITHREAD' configuration modes. (CVS 5234) 2008-06-18 17:09:10 +00:00
mem5.c Fix mem3.c (broken by (5320)). (CVS 5321) 2008-06-27 14:05:24 +00:00
mutex_os2.c Update OS/2 mutex implementation: make methods static and don't use them by the old names any more. Held/Notheld should be debug only. (CVS 5290) 2008-06-23 22:13:27 +00:00
mutex_unix.c Fix some minor compile problems. (CVS 5248) 2008-06-19 16:07:07 +00:00
mutex_w32.c Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311) 2008-06-26 10:41:19 +00:00
mutex.c Shuffle some of the mutex related documentation in sqlite.h.in to match the new sqlite3_mutex_methods based API. (CVS 5244) 2008-06-19 08:51:23 +00:00
mutex.h Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311) 2008-06-26 10:41:19 +00:00
os_common.h Consolidated inline assembly versions of "hwtime()" into hwtime.h. Provided MSVC version. Modified code for consistent use of hwtime(). Changed implementation to use sqlite_uint64 and sqlite_int64 instead of unsigned long long int and long long int for MSVC compiler support. (CVS 5178) 2008-05-29 20:22:37 +00:00
os_os2.c Handle sqlite3_temp_directory on OS/2. (CVS 5379) 2008-07-08 22:34:06 +00:00
os_unix.c Remove unused code. Test coverage enhancements. Modify the algorithm used 2008-07-10 00:32:42 +00:00
os_win.c Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311) 2008-06-26 10:41:19 +00:00
os.c Documentation updates in sqlite.h.in. No changes to code. (CVS 5315) 2008-06-26 18:16:05 +00:00
os.h Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311) 2008-06-26 10:41:19 +00:00
pager.c Make the btree layer robust when faced with a corrupt database that 2008-07-11 03:34:09 +00:00
pager.h Change the signature of sqlite3PagerPagecount() so that it can return an error code. (CVS 5195) 2008-06-07 08:58:22 +00:00
parse.y Remove obsolete code from select.c, including the "affinity" parameter 2008-07-08 23:40:20 +00:00
pragma.c Prohibit the user from changing the temporary storage medium (pragma temp_store) while there is a read transaction open on the temporary database. Add tests to shared.test to cover a few more lines in btree.c. (CVS 5362) 2008-07-08 07:35:51 +00:00
prepare.c Completely rework the sqlite3SetString() primitive so that it honors the 2008-07-08 19:34:06 +00:00
printf.c Write sqlite3_initialize() calls in sqlite3_malloc() within 2008-07-14 12:52:53 +00:00
random.c Bug fixes: Plug a memory leak introduced by the previous check-in. Get 2008-06-19 01:03:17 +00:00
select.c Detect and handles the case where a row is modified or deleted while it 2008-07-11 21:02:53 +00:00
shell.c Tweak to the ".timer" command in the CLI to help it work better with GCC. (CVS 5398) 2008-07-11 17:23:24 +00:00
sqlite3ext.h Changes to loadext.test so that it works on osx as well as linux. (CVS 5329) 2008-06-30 15:09:29 +00:00
sqlite.h.in Fix a typo in the documentation. (CVS 5403) 2008-07-13 03:55:03 +00:00
sqliteInt.h Remove leftover debugging commands (breakpoint and btree_breakpoint) from 2008-07-12 14:52:20 +00:00
sqliteLimit.h Change comment in sqliteLimit.h to correctly describe the 2008-03-26 15:56:22 +00:00
status.c Additional test coverage for the btree module. Remove the failsafe() macro 2008-07-11 16:15:17 +00:00
table.c Added macros to convert between 32-bit ints and 64-bit ptrs to avoid compiler warnings. (CVS 5378) 2008-07-08 22:28:48 +00:00
tclsqlite.c Add the SQLITE_OPEN_NOMUTEX flag. Used for opening connections that are not protected by an internal mutex. (CVS 5387) 2008-07-10 17:52:49 +00:00
test1.c Remove leftover debugging commands (breakpoint and btree_breakpoint) from 2008-07-12 14:52:20 +00:00
test2.c Remove leftover debugging commands (breakpoint and btree_breakpoint) from 2008-07-12 14:52:20 +00:00
test3.c Remove leftover debugging commands (breakpoint and btree_breakpoint) from 2008-07-12 14:52:20 +00:00
test4.c Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311) 2008-06-26 10:41:19 +00:00
test5.c The sqlite3_value object now carries an sqlite3* pointer to use for 2007-08-21 19:33:56 +00:00
test6.c Remove the xGetTempname() method from the vfs structure. Temp files are now opened by passing a NULL pointer as the filename to xOpen(). (CVS 5190) 2008-06-06 11:11:25 +00:00
test7.c Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311) 2008-06-26 10:41:19 +00:00
test8.c Additional test cases added on the sqlite3_create_function() interface. (CVS 5349) 2008-07-07 14:50:14 +00:00
test9.c Fix minor problems in the test scripts and harness. (CVS 5394) 2008-07-11 13:53:54 +00:00
test_async.c Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311) 2008-06-26 10:41:19 +00:00
test_autoext.c Add tests to verify correct behavior when mutex initialization fails. (CVS 5359) 2008-07-08 02:12:37 +00:00
test_btree.c Detect and handles the case where a row is modified or deleted while it 2008-07-11 21:02:53 +00:00
test_config.c Remove obsolete code from select.c, including the "affinity" parameter 2008-07-08 23:40:20 +00:00
test_devsym.c Remove the xGetTempname() method from the vfs structure. Temp files are now opened by passing a NULL pointer as the filename to xOpen(). (CVS 5190) 2008-06-06 11:11:25 +00:00
test_func.c Detect and handles the case where a row is modified or deleted while it 2008-07-11 21:02:53 +00:00
test_hexio.c Add "b" to fopen() in the hexio tests so that extra carriage returns are 2008-05-12 16:17:42 +00:00
test_loadext.c Additional test cases for loadable extensions. (CVS 5247) 2008-06-19 15:44:00 +00:00
test_malloc.c Additional test coverage for the btree module. Remove the failsafe() macro 2008-07-11 16:15:17 +00:00
test_md5.c Add more version tags to files that lack them. Ticket #3120. (CVS 5137) 2008-05-16 04:51:54 +00:00
test_mutex.c Fix a bug in the mutex-testing logic introduced by check-in (5389). (CVS 5390) 2008-07-10 20:41:49 +00:00
test_onefile.c Change the TEMP_STORE preprocessor symbol to SQLITE_TEMP_STORE. (CVS 5312) 2008-06-26 10:54:12 +00:00
test_osinst.c Fix the test script --binarylog option. (CVS 5401) 2008-07-12 15:55:54 +00:00
test_schema.c Additional test cases added on the sqlite3_create_function() interface. (CVS 5349) 2008-07-07 14:50:14 +00:00
test_server.c Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311) 2008-06-26 10:41:19 +00:00
test_tclvar.c Additional test cases added on the sqlite3_create_function() interface. (CVS 5349) 2008-07-07 14:50:14 +00:00
test_thread.c Change all instances of "it's" in comments to either "its" or "it is", 2007-12-13 21:54:09 +00:00
tokenize.c Completely rework the sqlite3SetString() primitive so that it honors the 2008-07-08 19:34:06 +00:00
trigger.c Remove obsolete code from select.c, including the "affinity" parameter 2008-07-08 23:40:20 +00:00
update.c Test coverage improvements on printf. (CVS 5385) 2008-07-09 16:51:51 +00:00
utf.c Changed copy-paste error in comment. Fixes #3193. (CVS 5323) 2008-06-27 18:59:44 +00:00
util.c Improved NaN testing for highly optimized GCC on x86. 2008-07-11 16:19:09 +00:00
vacuum.c Completely rework the sqlite3SetString() primitive so that it honors the 2008-07-08 19:34:06 +00:00
vdbe.c Detect and handles the case where a row is modified or deleted while it 2008-07-11 21:02:53 +00:00
vdbe.h The compound-select merge optimization passes quick.test with no errors. (CVS 5299) 2008-06-25 00:12:41 +00:00
vdbeapi.c Add the sqlite3_next_stmt() interface, including test cases. (CVS 5243) 2008-06-19 02:52:25 +00:00
vdbeaux.c Detect and handles the case where a row is modified or deleted while it 2008-07-11 21:02:53 +00:00
vdbeblob.c Remove unused code. Test coverage enhancements. Modify the algorithm used 2008-07-10 00:32:42 +00:00
vdbefifo.c Continuing work on the new memory allocation subsystem. 2008-06-15 02:51:47 +00:00
vdbeInt.h The compound-select merge optimization passes quick.test with no errors. (CVS 5299) 2008-06-25 00:12:41 +00:00
vdbemem.c Test coverage improvements on printf. (CVS 5385) 2008-07-09 16:51:51 +00:00
vtab.c Fix a failure to report a failed malloc() within sqlite3_create_module(). (CVS 5284) 2008-06-23 17:44:18 +00:00
where.c Remove leftover debugging commands (breakpoint and btree_breakpoint) from 2008-07-12 14:52:20 +00:00