sqlite/src
drh b59005e5a3 Make sure pragma integrity_check does not report "ok" after first finding
a bunch of errors. (CVS 2744)

FossilOrigin-Name: efec04dedfff8b92527b42e59cc32b4f69031021
2005-10-05 11:41:48 +00:00
..
alter.c Increase test coverage of alter.c to 100%. Fix bugs found in the process. (CVS 2603) 2005-08-19 19:14:12 +00:00
analyze.c Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00
attach.c Increased test coverage. Some malloc tests now fail though this is believed 2005-08-20 03:03:04 +00:00
auth.c Fix authentication so that it works with AS aliases. Ticket #1338. (CVS 2570) 2005-07-29 15:36:14 +00:00
btree.c Changes to make corruption errors easier to track down. (CVS 2709) 2005-09-17 15:20:26 +00:00
btree.h Disable synchronous writes to the master journal when PRAGMA synchronous=OFF 2005-08-27 16:36:48 +00:00
build.c Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00
callback.c The case_sensitive_like pragma added. 2005-08-14 01:20:37 +00:00
complete.c Split the sqlite3_complete() API out into a separate source file so that 2005-08-14 17:53:20 +00:00
date.c Remove the blob(), text() and numeric() functions added in (2524) and 2005-06-25 18:42:14 +00:00
delete.c Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00
experimental.c Fix the header comment on experimental.c. (CVS 2365) 2005-03-02 05:18:29 +00:00
expr.c Fix an uninitialized structure member that was causing a malfunction when 2005-09-23 21:11:53 +00:00
func.c SUM returns NULL when it has no inputs. Ticket #1413. (CVS 2678) 2005-09-08 20:37:43 +00:00
hash.c The hash tables deallocate when empty in order to avoid nuisanse complaints 2005-10-03 15:11:08 +00:00
hash.h Optimizations in the hash table module. (CVS 1896) 2004-08-20 14:08:50 +00:00
insert.c Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00
legacy.c Fix more name collisions. Allow sqlite.h and sqlite3.h to both be included 2004-09-06 17:34:12 +00:00
main.c Changes to make corruption errors easier to track down. (CVS 2709) 2005-09-17 15:20:26 +00:00
md5.c Remove the iCollate argument from sqlite3_create_function() (CVS 1632) 2004-06-19 08:18:07 +00:00
os_common.h Changes to make corruption errors easier to track down. (CVS 2709) 2005-09-17 15:20:26 +00:00
os_test.c While doing a transaction comment, use fdatasync() instead of fsync() in 2005-09-08 12:38:41 +00:00
os_test.h Fix a problem with crashtest caused by the F_FULLSYNC change. (CVS 2373) 2005-03-10 14:32:24 +00:00
os_unix.c Another attempt to get fdatasync to be ignored on non-conforming posix systems. 2005-10-05 10:29:36 +00:00
os_unix.h Changes to the unix OS layer aimed at finding and fixing tickets 2005-06-15 17:47:55 +00:00
os_win.c Work around limitations of MSVC++ 6. Tickets #1429, #1437, and #1440. (CVS 2720) 2005-09-19 12:53:18 +00:00
os_win.h Use type i64 instead of off_t for file offsets since off_t is giving 2004-10-01 02:00:31 +00:00
os.h Changes to make corruption errors easier to track down. (CVS 2709) 2005-09-17 15:20:26 +00:00
pager.c Changes to make corruption errors easier to track down. (CVS 2709) 2005-09-17 15:20:26 +00:00
pager.h Set the default maximum page size to 32768, not 8192. (CVS 2724) 2005-09-19 19:05:21 +00:00
parse.y Fix a whole host of newly discovered memory leaks the occur after a 2005-09-16 02:38:09 +00:00
pragma.c Make sure pragma integrity_check does not report "ok" after first finding 2005-10-05 11:41:48 +00:00
prepare.c Add the experimental EXPLAIN QUERY PLAN diagnostic capability. (CVS 2685) 2005-09-10 16:46:12 +00:00
printf.c Fix a whole host of newly discovered memory leaks the occur after a 2005-09-16 02:38:09 +00:00
random.c Update older opcode names to be more meaningful in light of the latest 2005-06-12 21:35:51 +00:00
select.c Add VM code comments on the group-by processing. Extra group-by test case. (CVS 2731) 2005-09-20 18:13:23 +00:00
shell.c The ".dump" command from the shell correctly saves the state of the 2005-09-11 02:03:03 +00:00
sqlite.h.in Fix a comment in sqlite.h. Ticket #1321. (CVS 2670) 2005-09-08 10:58:51 +00:00
sqliteInt.h ON-clause terms in a LEFT JOIN that restrict only the left table, should not 2005-09-19 21:05:48 +00:00
table.c Add the SQLITE_OMIT_GET_TABLE compile-time flag. (CVS 2740) 2005-10-05 02:13:40 +00:00
tclsqlite.c Changes to support TEA on cygwin. (CVS 2742) 2005-10-05 10:40:15 +00:00
test1.c The sqlite3_query_plan debugging variable now only appears with SQLITE_TEST=1. (CVS 2721) 2005-09-19 13:15:23 +00:00
test2.c Move the definition of sqlite3_pending_byte from test2.c to os_common.h. (CVS 2701) 2005-09-16 10:13:41 +00:00
test3.c Improve the error message associated with SQLITE_FULL. Ticket #1353. 2005-08-11 02:10:18 +00:00
test4.c Improve the error message associated with SQLITE_FULL. Ticket #1353. 2005-08-11 02:10:18 +00:00
test5.c The SQLITE_OMIT_UTF16 macro now removes lots of code and all tests still pass. (CVS 2100) 2004-11-14 21:56:29 +00:00
tokenize.c Allow floating point literals to being or end with a decimal point. 2005-08-23 11:31:26 +00:00
trigger.c Update older opcode names to be more meaningful in light of the latest 2005-06-12 21:35:51 +00:00
update.c Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00
utf.c Make sure the #include of "sqliteInt.h" always comes first in C source files. (CVS 2284) 2005-01-28 01:29:08 +00:00
util.c The sqlite3ReallocOrFree routine should set its pointer to NULL when it fails. (CVS 2715) 2005-09-17 18:34:11 +00:00
vacuum.c Remove SSE vacuum hook. (CVS 2502) 2005-06-07 09:21:07 +00:00
vdbe.c Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00
vdbe.h Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00
vdbeapi.c Fix a whole host of newly discovered memory leaks the occur after a 2005-09-16 02:38:09 +00:00
vdbeaux.c Fix an assert or memory leak that occurs when trying to EXPLAIN a statement 2005-10-05 11:35:09 +00:00
vdbefifo.c Fix a bug in DELETE that might cause a segfault when deleting more 2005-08-24 16:13:51 +00:00
vdbeInt.h Work around limitations of MSVC++ 6. Tickets #1429, #1437, and #1440. (CVS 2720) 2005-09-19 12:53:18 +00:00
vdbemem.c Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00
where.c Code cleanup and simplification. Three new Mem opcodes added. 2005-09-20 17:42:23 +00:00