sqlite/src
rse 4eb8e1b9f2 remove private declaration of sqlite3_snprintf() in sqliteInt.h as there is already a public declaration in sqlite3.h (CVS 5643)
FossilOrigin-Name: 4113e778be7a1e3e7a67583913e137c66d88a190
2008-08-29 18:42:30 +00:00
..
alter.c Disallow the ON CONFLICT clause on CHECK constraints. The syntax used to be 2008-08-08 14:19:41 +00:00
analyze.c
attach.c Refactor the name resolution procedures in the code generator. (CVS 5569) 2008-08-20 16:35:10 +00:00
auth.c
bitvec.c
btmutex.c
btree.c Use a bitvec object to store the set of pages with the 'always-rollback' property for a transaction. (CVS 5622) 2008-08-27 15:16:33 +00:00
btree.h Additional changes toward fixing ticket #3292. (CVS 5562) 2008-08-13 19:11:48 +00:00
btreeInt.h
build.c Refactor the name resolution procedures in the code generator. (CVS 5569) 2008-08-20 16:35:10 +00:00
callback.c Move date+time functions to start-time initialization. Additional 2008-08-21 20:21:34 +00:00
complete.c
date.c Move date+time functions to start-time initialization. Additional 2008-08-21 20:21:34 +00:00
delete.c Avoid reevaluating WHERE and ORDER BY expressions that alias terms in the 2008-08-29 02:14:02 +00:00
expr.c Avoid reevaluating WHERE and ORDER BY expressions that alias terms in the 2008-08-29 02:14:02 +00:00
fault.c
func.c Move date+time functions to start-time initialization. Additional 2008-08-21 20:21:34 +00:00
global.c Move date+time functions to start-time initialization. Additional 2008-08-21 20:21:34 +00:00
hash.c
hash.h
hwtime.h
insert.c Refactor the name resolution procedures in the code generator. (CVS 5569) 2008-08-20 16:35:10 +00:00
journal.c
legacy.c Additional coverage testing. Fix a segfault following OOM in 2008-08-02 03:50:39 +00:00
loadext.c Additional coverage testing. Fix a segfault following OOM in 2008-08-02 03:50:39 +00:00
main.c If any error occurs during sqlite3_open(), move the database handle into "sick" state. When in the sick state the user can use sqlite3_errcode() and sqlite3_errmsg(), but not much else. (CVS 5628) 2008-08-27 19:01:57 +00:00
malloc.c Move a call to sqlite3_mutex_leave() to protect calls to sqlite3StatusAdd() related to scratch (SQLITE_CONFIG_SCRATCH) memory. (CVS 5641) 2008-08-29 17:56:12 +00:00
mem1.c
mem2.c Fix further warnings/compilation errors in test code. (CVS 5558) 2008-08-12 15:04:58 +00:00
mem3.c
mem4.c
mem5.c
mem6.c
mutex.c
mutex.h
mutex_os2.c
mutex_unix.c
mutex_w32.c
os.c
os.h
os_common.h
os_os2.c Hide (for non-debugging builds) and remove DELETEONCLOSE files on OS/2, following the Windows example. Ticket #3328. (CVS 5592) 2008-08-22 13:47:56 +00:00
os_unix.c quieting compiler warning about pointer/int conversion size mismatch (CVS 5602) 2008-08-22 18:41:37 +00:00
os_win.c
pager.c Miscellaneous cleanup in the new pcache code. (CVS 5629) 2008-08-28 02:26:07 +00:00
pager.h Use a bitvec object to store the set of pages with the 'always-rollback' property for a transaction. (CVS 5622) 2008-08-27 15:16:33 +00:00
parse.y Refactor the name resolution procedures in the code generator. (CVS 5569) 2008-08-20 16:35:10 +00:00
pcache.c If a page is made eligible for recycling when more than the configured maximum number of pages are allocated, free it immediately instead of adding it to the LRU list. (CVS 5638) 2008-08-29 09:10:02 +00:00
pcache.h If a page is made eligible for recycling when more than the configured maximum number of pages are allocated, free it immediately instead of adding it to the LRU list. (CVS 5638) 2008-08-29 09:10:02 +00:00
pragma.c When a "pragma main.table_info(...)" is issued, consider only tables from the main database, not the temp db. Ticket #3320. (CVS 5568) 2008-08-20 16:34:24 +00:00
prepare.c Refactor the name resolution procedures in the code generator. (CVS 5569) 2008-08-20 16:35:10 +00:00
printf.c Remove unused variable from printf.c. Ticket #3331. (CVS 5595) 2008-08-22 14:08:35 +00:00
random.c
resolve.c Avoid reevaluating WHERE and ORDER BY expressions that alias terms in the 2008-08-29 02:14:02 +00:00
select.c Do not flatten subqueries where the subquery has a LIMIT and the outer 2008-08-26 12:56:14 +00:00
shell.c Make the CLI more tolerant of malformed schemas by setting the 2008-08-11 19:12:34 +00:00
sqlite.h.in Add the SQLITE_OPEN_FULLMUTEX definition to sqlite3.h. It currently is not 2008-08-25 21:23:01 +00:00
sqlite3ext.h
sqliteInt.h remove private declaration of sqlite3_snprintf() in sqliteInt.h as there is already a public declaration in sqlite3.h (CVS 5643) 2008-08-29 18:42:30 +00:00
sqliteLimit.h
status.c Revise the initialization and shutdown logic so that it no longer keeps 2008-08-12 15:21:11 +00:00
table.c
tclsqlite.c In the TCL interface, disable the authorizer when during a BEGIN, COMMIT, 2008-08-26 21:33:34 +00:00
test1.c If a page is made eligible for recycling when more than the configured maximum number of pages are allocated, free it immediately instead of adding it to the LRU list. (CVS 5638) 2008-08-29 09:10:02 +00:00
test2.c Simplify the pcache module by only recycling clean pages from 'other' caches. This commit causes errors in test files ioerr5.test and malloc5.test because they test recycling dirty pages from other caches. (CVS 5615) 2008-08-26 18:05:48 +00:00
test3.c Additional changes toward fixing ticket #3292. (CVS 5562) 2008-08-13 19:11:48 +00:00
test4.c
test5.c Fix further warnings/compilation errors in test code. (CVS 5558) 2008-08-12 15:04:58 +00:00
test6.c
test7.c
test8.c Add the pcache module from the experimental branch. Also change things so that most of the built-in SQL functions are kept in single static hash-table, rather than creating and populating a separate hash table for each open database connection. (CVS 5566) 2008-08-20 14:49:23 +00:00
test9.c
test_async.c
test_autoext.c
test_btree.c
test_config.c
test_devsym.c
test_func.c Miscellaneous cleanup in the new pcache code. (CVS 5629) 2008-08-28 02:26:07 +00:00
test_hexio.c
test_loadext.c Additional coverage testing. Fix a segfault following OOM in 2008-08-02 03:50:39 +00:00
test_malloc.c Add SQLITE_STATUS_PAGECACHE_SIZE and SQLITE_STATUS_SCRATCH_SIZE. (CVS 5537) 2008-08-05 17:53:22 +00:00
test_md5.c
test_mutex.c
test_onefile.c
test_osinst.c
test_schema.c
test_server.c
test_tclvar.c Fix warnings and a compilation error in test code. (CVS 5556) 2008-08-12 14:48:40 +00:00
test_thread.c Avoid using (clock seconds) in thread003.test. It is not available if testfixture is linked to tcl 8.5. (CVS 5634) 2008-08-28 13:55:10 +00:00
tokenize.c Avoid reevaluating WHERE and ORDER BY expressions that alias terms in the 2008-08-29 02:14:02 +00:00
trigger.c Refactor the name resolution procedures in the code generator. (CVS 5569) 2008-08-20 16:35:10 +00:00
update.c Allow the WHERE clause in an UPDATE or DELETE against a view with an 2008-08-22 12:30:52 +00:00
utf.c Fix further warnings/compilation errors in test code. (CVS 5558) 2008-08-12 15:04:58 +00:00
util.c
vacuum.c All the page_size pragma to change the page size on a new :memory: database, 2008-08-26 21:07:26 +00:00
vdbe.c Remove references to OP_MoveTo in comments of vdbe.c - that opcode no 2008-08-21 19:28:30 +00:00
vdbe.h Modify the sqlite3VdbeUnpackRecord() interface to force the temporary 2008-08-20 22:06:47 +00:00
vdbeInt.h Additional changes toward fixing ticket #3292. (CVS 5562) 2008-08-13 19:11:48 +00:00
vdbeapi.c Fix the functionality associated with sqlite3_release_memory() and sqlite3_soft_heap_limit(). It is automatically disabled if the SQLITE_CONFIG_PAGECACHE option is used. (CVS 5576) 2008-08-21 12:19:44 +00:00
vdbeaux.c Modify the sqlite3VdbeUnpackRecord() interface to force the temporary 2008-08-20 22:06:47 +00:00
vdbeblob.c
vdbefifo.c
vdbemem.c Make sure the function context is fully initialized before invoking the 2008-08-22 14:41:00 +00:00
vtab.c Refactor the name resolution procedures in the code generator. (CVS 5569) 2008-08-20 16:35:10 +00:00
walker.c Refactor the name resolution procedures in the code generator. (CVS 5569) 2008-08-20 16:35:10 +00:00
where.c Two if statements should be asserts. GCC was silently ignoring them, 2008-08-25 12:08:22 +00:00