sqlite/src
2014-10-10 19:10:59 +00:00
..
alter.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
analyze.c Remove unreachable branches in decodeIntArray() when compiling without 2014-10-06 18:33:49 +00:00
attach.c All interfaces working and tested. 2014-09-11 15:25:02 +00:00
auth.c Add support for the extra parameter on the sqlite3_set_authorizer() callback 2014-09-11 13:44:52 +00:00
backup.c Split the sqlite3Error() routine into sqlite3Error() and 2014-08-22 18:00:11 +00:00
bitvec.c Many spelling fixes in comments. No changes to code. 2013-03-21 21:20:32 +00:00
btmutex.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
btree.c Avoid ever writing before the start of an allocated buffer in the DIRECT_OVERFLOW_READ code. Fix for [e3a290961a6]. 2014-10-01 12:01:10 +00:00
btree.h Another performance tweak: Split the sqlite3BtreeCursorHasMoved() routine 2014-08-22 23:33:03 +00:00
btreeInt.h Fix the "PRAGMA integrity_check" command so that it avoids formatting error 2014-09-26 02:41:05 +00:00
build.c Avoid leaking Index.aiRowEst memory if an OOM causes a rollback which deletes 2014-10-04 00:07:44 +00:00
callback.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
complete.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
ctime.c Change that might allow SQLite to build and work using the EBCDIC character 2014-09-25 02:44:29 +00:00
date.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
delete.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
expr.c Show the TK_DOT operator in the TreeView debugging output. 2014-10-01 13:17:34 +00:00
fault.c
fkey.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
func.c Simplifications to the SQL function and aggregate calling procedures. 2014-09-25 13:17:30 +00:00
global.c Updates to documentation and requirements marks. No code changes. 2014-10-04 11:59:33 +00:00
hash.c Simplify the interface to the symbol table, saving 600 bytes of code space. 2014-08-21 20:26:37 +00:00
hash.h Simplify the interface to the symbol table, saving 600 bytes of code space. 2014-08-21 20:26:37 +00:00
hwtime.h
insert.c Fix the affinity on inserts into the ANALYZE tables. Change the affinity 2014-09-19 20:13:25 +00:00
journal.c On atomic-write capable systems, if copying the contents of an in-memory journal to disk fails, close the (on disk) journal file before returning the error to the caller. This causes the subsequent rollback operation to use the in-memory journal. Fix for [df678d738adb]. 2012-12-18 11:59:39 +00:00
legacy.c Complete the implementation of the various APIs. Fix several problems. 2014-09-10 22:46:46 +00:00
lempar.c Fix a problem with parser memory allocation on 32-bit systems. 2014-09-12 04:28:33 +00:00
loadext.c Change the name of the _texte64() interfaces to just _test64(), without the "e". 2014-09-09 20:30:24 +00:00
main.c Updates to documentation and requirements marks. No code changes. 2014-10-04 11:59:33 +00:00
malloc.c Enhance (and fix) the MEMTYPE tags associated with heap memory allocations 2014-10-07 15:46:54 +00:00
mem0.c
mem1.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
mem2.c Enhance (and fix) the MEMTYPE tags associated with heap memory allocations 2014-10-07 15:46:54 +00:00
mem3.c Add a target to main.mk that will fail if the amalgamation contains any exported symbols that do not begin with "sqlite3_". Run this target from within releasetest.tcl. Add "static" to a couple of private functions in mem3.c. 2011-07-07 08:19:16 +00:00
mem5.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
memjournal.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
mutex_noop.c Add three new static mutexes for use by the application. This is a partial 2014-07-30 21:10:12 +00:00
mutex_unix.c Add three new static mutexes for use by the application. This is a partial 2014-07-30 21:10:12 +00:00
mutex_w32.c Fix compiler warnings on WinCE. 2014-08-14 18:31:56 +00:00
mutex.c Add three new static mutexes for use by the application. This is a partial 2014-07-30 21:10:12 +00:00
mutex.h Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
notify.c Split the sqlite3Error() routine into sqlite3Error() and 2014-08-22 18:00:11 +00:00
os_common.h The server1.test script should only run if mutexes are functional. 2011-08-31 19:40:58 +00:00
os_setup.h Fix several header file comments. No changes to code. 2014-05-05 17:43:28 +00:00
os_unix.c Disable shared memory operations using the unix-nolock VFS. 2014-09-22 03:22:27 +00:00
os_win.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
os_win.h Fix compiler warnings on WinCE. 2014-08-14 18:31:56 +00:00
os.c Do not inject OOM faults into SQLITE_FCNTL_COMMIT_PHASE_TWO file-control invocations. It causes problems for test scripts. 2013-12-19 17:04:58 +00:00
os.h Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
pager.c Ensure that the Pager.pTmpSpace allocation is correct even if an OOM error 2014-10-08 13:34:21 +00:00
pager.h Create and use a new pager interface sqlite3PagerUnrefNotNull() that works 2013-12-13 19:35:21 +00:00
parse.y Avoid a NULL pointer deference when processing the IS operator if the 2014-10-02 21:52:35 +00:00
pcache1.c Fix a failing test case in index5.test. Also tweak the way cache memory is divided between read-only and dirty pages when using SQLITE_CONFIG_PAGECACHE to reduce IO in some cases. 2014-10-10 19:10:59 +00:00
pcache.c Remove the EXPENSIVE_ASSERTS in pcache.c having to do with the pSynced field 2014-09-15 14:59:12 +00:00
pcache.h Refactor the sqlite3PcacheFetch() routine into three separate routines, 2014-08-27 23:18:01 +00:00
pragma.c Move user authentication blocking from sqlite3_prepare() over to the 2014-09-11 14:01:41 +00:00
prepare.c Move user authentication blocking from sqlite3_prepare() over to the 2014-09-11 14:01:41 +00:00
printf.c Improvements to the new syntax-tree output routines: Omit the "END SELECT" 2014-09-30 19:04:41 +00:00
random.c Enhance sqlite3_randomness(N,P) such that it resets the internal PRNG 2014-01-01 14:00:13 +00:00
resolve.c Do not flatten aggregate subqueries that contain min() or max() functions 2014-09-15 14:46:02 +00:00
rowset.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
select.c Improvements to the new syntax-tree output routines: Omit the "END SELECT" 2014-09-30 19:04:41 +00:00
shell.c Cause the command-line shell to return non-zero if the final SQL statement 2014-10-10 13:08:33 +00:00
sqlite3.rc Add icon to the Windows shell executable. This is a resource change only, no changes to code. 2014-08-14 02:59:51 +00:00
sqlite3ext.h Change the name of the _texte64() interfaces to just _test64(), without the "e". 2014-09-09 20:30:24 +00:00
sqlite.h.in Tweaks to documentation on sqlite3_open() and sqlite3_bind(). No code changes. 2014-10-04 19:31:53 +00:00
sqliteInt.h Changes to enable compiling using VC6. 2014-10-10 18:09:52 +00:00
sqliteLimit.h Refactoring the mmap interface. The controlling pragma is now "mmap_size" 2013-04-15 17:03:42 +00:00
status.c Add requirements marks on the sqlite3_db_status() interface implementation. 2014-10-03 16:00:51 +00:00
table.c Fix compiler warnings and change the nullMem structure initializer into a 2014-09-18 01:21:43 +00:00
tclsqlite.c Add support for the extra parameter on the sqlite3_set_authorizer() callback 2014-09-11 13:44:52 +00:00
test1.c Fix up test cases to account for the new SQLITE_LIMIT_WORKER_THREADS limit. 2014-10-08 15:53:21 +00:00
test2.c Repurpose the SQLITE_TESTCTRL_FAULT_INSTALL test-control to register a 2014-05-16 14:17:01 +00:00
test3.c More refinements to Windows OSTRACE usage. Replace all usage of sqlite3TestErrorName() with sqlite3ErrName() and add missing return codes. 2013-04-29 03:09:10 +00:00
test4.c More refinements to Windows OSTRACE usage. Replace all usage of sqlite3TestErrorName() with sqlite3ErrName() and add missing return codes. 2013-04-29 03:09:10 +00:00
test5.c Experimental simplification of memory flags/type handling. 2014-03-05 01:29:18 +00:00
test6.c Add the SQLITE_FCNTL_SYNC and SQLITE_FCNTL_COMMIT_PHASETWO file-controls 2013-12-11 15:47:39 +00:00
test7.c Changes to test code to make sure no server threads are left running after server1.test finishes. 2013-10-15 15:35:27 +00:00
test8.c Fixes for various clang warnings. 2014-01-24 22:58:00 +00:00
test9.c
test_async.c More refinements to Windows OSTRACE usage. Replace all usage of sqlite3TestErrorName() with sqlite3ErrName() and add missing return codes. 2013-04-29 03:09:10 +00:00
test_autoext.c Adjust #ifdefs in test_autoext.c so that it compiles with 2013-08-06 18:35:31 +00:00
test_backup.c More refinements to Windows OSTRACE usage. Replace all usage of sqlite3TestErrorName() with sqlite3ErrName() and add missing return codes. 2013-04-29 03:09:10 +00:00
test_btree.c Combine the various boolean fields of the BtCursor object into a single 2014-03-11 23:40:44 +00:00
test_config.c Fix up test cases to account for the new SQLITE_LIMIT_WORKER_THREADS limit. 2014-10-08 15:53:21 +00:00
test_demovfs.c Adjust #ifdefs in test_autoext.c so that it compiles with 2013-08-06 18:35:31 +00:00
test_devsym.c Change the name of the xShmClose VFS method to xShmUnmap, everywhere. 2010-07-14 00:14:30 +00:00
test_fs.c Adjust #ifdefs in test_autoext.c so that it compiles with 2013-08-06 18:35:31 +00:00
test_func.c Add the Mem.szMalloc element to the Mem object and use it to keep track of 2014-09-18 21:25:33 +00:00
test_hexio.c Fix harmless compiler warnings on x64 MSVC, mostly in test code, but also in 2012-04-19 18:04:28 +00:00
test_init.c Remove unnecessary memset() calls from test code. 2013-10-03 11:27:56 +00:00
test_intarray.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
test_intarray.h Add SQLITE_API macros in front of interface routines in the test_intarray.c 2014-08-20 13:25:06 +00:00
test_journal.c Fix harmless compiler warnings on x64 MSVC, mostly in test code, but also in 2012-04-19 18:04:28 +00:00
test_loadext.c Enhance testing support for the Win32 VFS dynamic extension loading facilities. 2014-02-24 21:20:25 +00:00
test_malloc.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
test_multiplex.c Add the "multiplex_truncate" PRAGMA to the multiplexor extension, for 2014-09-23 18:30:00 +00:00
test_multiplex.h Add the "eForce" parameter to the sqlite3_multiplex_shutdown() entry point 2014-07-30 15:43:05 +00:00
test_mutex.c More refinements to Windows OSTRACE usage. Replace all usage of sqlite3TestErrorName() with sqlite3ErrName() and add missing return codes. 2013-04-29 03:09:10 +00:00
test_onefile.c Fix harmless compiler warnings on x64 MSVC, mostly in test code, but also in 2012-04-19 18:04:28 +00:00
test_osinst.c Further work on Windows header file reform. 2013-11-26 01:00:31 +00:00
test_pcache.c Merge the PCACHE2 changes into trunk. 2011-11-16 18:08:07 +00:00
test_quota.c Further work on Windows header file reform. 2013-11-26 01:00:31 +00:00
test_quota.h Further work on Windows header file reform. 2013-11-26 01:00:31 +00:00
test_rtree.c Add the sqlite3_rtree_query_callback() API to the RTree virtual table. 2014-04-28 17:56:19 +00:00
test_schema.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
test_server.c Changes to test code to make sure no server threads are left running after server1.test finishes. 2013-10-15 15:35:27 +00:00
test_sqllog.c Enhanced documentation for the SQLITE_CONFIG_SQLLOG mechanism and the 2013-04-22 13:51:09 +00:00
test_stat.c A pair of sqlite3_analyzer bug fixes: (1) quote strings in the SQL at the end 2013-11-02 11:34:58 +00:00
test_superlock.c Work around restriction in Windows file locking. 2010-12-07 17:12:21 +00:00
test_syscall.c Add a test to ensure os_unix.c works with 64KiB OS pages. 2014-03-20 09:42:09 +00:00
test_tclvar.c
test_thread.c More refinements to Windows OSTRACE usage. Replace all usage of sqlite3TestErrorName() with sqlite3ErrName() and add missing return codes. 2013-04-29 03:09:10 +00:00
test_vfs.c Add test cases and documentation for the nolock and immutable query 2014-05-07 15:09:24 +00:00
test_vfstrace.c Add the sqlite3_rtree_query_callback() API to the RTree virtual table. 2014-04-28 17:56:19 +00:00
test_wsd.c
threads.c Changes to enable compiling using VC6. 2014-10-10 18:09:52 +00:00
tokenize.c Change that might allow SQLite to build and work using the EBCDIC character 2014-09-25 02:44:29 +00:00
trigger.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
update.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
utf.c Add the Mem.szMalloc element to the Mem object and use it to keep track of 2014-09-18 21:25:33 +00:00
util.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
vacuum.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
vdbe.c Set the connection-specific lastRowid value before calling any SQL function. 2014-10-08 14:28:31 +00:00
vdbe.h Reduce the number of arguments to RecordCompare functions from 4 to 3, 2014-09-16 14:37:35 +00:00
vdbeapi.c Add requirements marks on the sqlite3_db_status() interface implementation. 2014-10-03 16:00:51 +00:00
vdbeaux.c Remove the SQLITE_ENABLE_TREE_EXPLAIN compile-time option. Add alternative 2014-09-30 12:33:33 +00:00
vdbeblob.c Split the sqlite3Error() routine into sqlite3Error() and 2014-08-22 18:00:11 +00:00
vdbeInt.h Remove the SQLITE_ENABLE_TREE_EXPLAIN compile-time option. Add alternative 2014-09-30 12:33:33 +00:00
vdbemem.c Make sure the sqlite3VdbeMemClearAndResize() routine is never called with a 2014-10-07 23:02:24 +00:00
vdbesort.c Do not attempt to extend the temp file if VFS version 3 is not supported and 2014-09-19 19:43:20 +00:00
vdbetrace.c Remove the SQLITE_ENABLE_TREE_EXPLAIN compile-time option. Add alternative 2014-09-30 12:33:33 +00:00
vtab.c Split the sqlite3Error() routine into sqlite3Error() and 2014-08-22 18:00:11 +00:00
wal.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
wal.h Minor fixes for compilation with SQLITE_OMIT_WAL defined. 2013-05-02 17:37:31 +00:00
walker.c Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00
where.c Add the estimated number of output rows to the EXPLAIN QUERY PLAN output 2014-10-10 17:20:39 +00:00
whereInt.h Fix typos in comments. No code changes. 2014-09-06 16:39:46 +00:00