]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2007-12-12  danielk1977Remove an (explain) accidentally left in tkt2832.test...
2007-12-12  danielk1977Try to find some more stack leaks by adding OP_StackDep...
2007-12-12  danielk1977Remove a couple of lines in delete.c that weren't doing...
2007-12-12  danielk1977Fix some problems similar to #2832, but caused by trigg...
2007-12-12  danielk1977Test file containing minimal example of bug #2832....
2007-12-12  drhFix database corrupting code generation error for UPDAT...
2007-12-12  drhAdd a new OP_StackDepth opcode to help detect VDBE...
2007-12-12  danielk1977Fix test numbering in tkt2822.test. Ticket #2830. ...
2007-12-11  drhFix a comment on the SQLITE_SQL_MAX_LENGTH definition...
2007-12-11  drhBuild the CLI using the amalgamation. Relax the limit...
2007-12-11  danielk1977Fix a 'const' issue in trimFunc(). (CVS 4608)
2007-12-10  drhMake sure the windows driver responds correctly to the
2007-12-10  danielk1977Further modifications to do with ORDER BY and compound...
2007-12-10  drhFix a macro in func.c that causes problems for the...
2007-12-10  drhFix a bug in the compilation procedures for the Linux...
2007-12-10  danielk1977Fix compilation/testing with OMIT_SUBQUERY defined...
2007-12-08  drhBetter resolution of ORDER BY terms in compound queries...
2007-12-08  drhStrengthen the tests for aggregate functions in GROUP...
2007-12-08  drhFix a bug in the debugging printf logic. (CVS 4600)
2007-12-07  shessChange prefix search from O(N*M) to O(NlogM). The...
2007-12-07  drhIn shared-cache mode, make sure the busy hander invoked...
2007-12-07  drhGet the LIKE and GLOB operators working again on system...
2007-12-06  drhFix a leaking database connection in the vacuum2 test...
2007-12-06  drhUse the specified buffer length, not the maximum buffer...
2007-12-06  drhContinuing work on the C/C++ interface requirements...
2007-12-05  drhBegin adding requirements numbers to the C/C++ interfac...
2007-12-05  drhAdd the ability to change the autovacuum status of...
2007-12-04  drhMake sure statement journals are initiated when doing...
2007-12-04  drhFix a bug in the TCL code for sqlite3_analyzer. (CVS...
2007-12-04  drhClarify the operation of sqlite3_blob_close() in the...
2007-12-03  drhDo not require os_other.h if compiling with -DOS_OTHER...
2007-12-02  danielk1977When parsing CREATE INDEX statements from the sqlite_ma...
2007-12-01  drhAnother fix to Makefile.in for mingw. (CVS 4586)
2007-12-01  drhBeginning attempts at casting the sqlite.h.in documenta...
2007-12-01  drhBug fix to Makefile.in to allow it to work with mingw...
2007-11-30  drhAdd a few function requirements numbers to interfaces...
2007-11-29  drhMake sure we never try to "truncate" a file to a larger...
2007-11-29  drhAdd the optional (and experimental) mmap() memory alloc...
2007-11-29  danielk1977When using an index to scan a database table, read...
2007-11-29  danielk1977Optimisations for expressions of the form "<value>...
2007-11-28  drhAdd the {quote: StrAccum} object
2007-11-28  drhChange the BTree so that it uses the Pagers temporary...
2007-11-28  drhReorganize the code for the homegrown recursive mutexes...
2007-11-28  drhClarify the conditions under which homegrown recursive...
2007-11-28  drhPreset the legacy_file_format pragma to the value of...
2007-11-28  drhAdd an implementation of recursive mutexes for unix...
2007-11-27  drhAdd test cases to verify that the file format is preser...
2007-11-27  drhUse the hexio test utility rather than TCL's binary...
2007-11-27  drhRemove superfluous -lpthread from publish_osx.sh. Ticke...
2007-11-27  drhOmit the superfluous -lpthread option in publish.sh...
2007-11-27  drhAdd the publish_osx.sh script for building binaries...
2007-11-27  drhUpdate the "publish.sh" scripts used to build the binar...
2007-11-27  drhVersion 3.5.3 (CVS 4566)
2007-11-27  drhFix a bug that can cause a segfault on win32 systems...
2007-11-27  drhBug fix in the configure script. Ticket #2799.
2007-11-27  drhUpdate the version number to 3.5.3. Fix some minor...
2007-11-27  drhAdd likely() and unlikely() macros to the header file...
2007-11-26  drhUse macro __DARWIN__ rather than __MACOS__ for conditional
2007-11-26  drhAdditional out-of-memory testing. Fix bugs caused...
2007-11-24  drhDeclare the invalidateCursorsOnModifiedBtrees function...
2007-11-24  drhThe FTS3 amalgamation can now be appended to the SQLite...
2007-11-23  drhFix a typo in a change to all.test from earlier today...
2007-11-23  drhDo not require SQLITE_ENABLE_BROKEN_FTS2 if FTS2 is...
2007-11-23  drhAdd a #include of sqlite3.h to fts3_hash.c. Tickets...
2007-11-23  drhChanges fts3 to use only sqlite3_malloc() and not syste...
2007-11-23  drhRemove most documentation from the source code repository.
2007-11-23  drhMake sure that INSERT INTO ... SELECT ... always uses...
2007-11-23  drhAvoid a double-free in an out-of-memory situation with...
2007-11-22  drhChange to sqlite3.pc.in recommended by ticket #2786...
2007-11-21  drhHandle out-of-memory situations inside the query flattener.
2007-11-17  drhFix a bug in the grammar. We were giving the ones...
2007-11-16  danielk1977Fix a crash that can occur after a malloc failure....
2007-11-16  shessDon't do anything when input doclists are both empty...
2007-11-15  danielk1977Return SQLITE_MISUSE instead of crashing if NULL is...
2007-11-15  danielk1977Fix a segfault that can occur after a malloc failure...
2007-11-14  danielk1977Add an experimental API for retrieving the SQL source...
2007-11-13  danielk1977Modify the Tcl interface to use sqlite3_prepare_v2...
2007-11-12  chwVarious changes to enable compilation of SQLite library...
2007-11-12  drhAnother attempt at fixing a memory leak in the TCL...
2007-11-12  danielk1977Fix a code comment in select.c. No code changes. (CVS...
2007-11-12  danielk1977Where possible, transform the DISTINCT qualifier to...
2007-11-12  danielk1977Allow collation sequence names to be quoted. Ticket...
2007-11-12  danielk1977Modify the order of assert() macros in vdbe.c as per...
2007-11-11  drhFix the code generation for UPDATE and DELETE so that
2007-11-07  drhAdd asserts on sqlite3_mutex_held() to the zero-malloc...
2007-11-07  drhChanges the asynchronous I/O test module so that it...
2007-11-07  drhIn the windows VFS, make sure we do not return an error...
2007-11-05  drhVersion 3.5.2 (CVS 4531)
2007-11-05  drhPreparing documentation for the release of version...
2007-11-05  drhDrop support for the SQLITE_OMIT_MEMORY_ALLOCATION...
2007-11-05  danielk1977Reset the writer-thread halt criteria after halting...
2007-11-05  danielk1977Fix some minor problems with malloc failure and in...
2007-11-05  drhFix a bug in the misc1 test script. (CVS 4526)
2007-11-05  drhMake sure the default page size never exceeds the maxim...
2007-11-05  danielk1977Use malloc to obtain space for sqlite3_aggregate_contex...
2007-11-05  danielk1977Handle "IS NULL" constraints on virtual table scans...
2007-11-02  drhAdd the ".timer" command to the CLI. (CVS 4522)
2007-11-02  drhFix building of sqlite3_analyzer on Mac. (CVS 4521)
2007-11-02  danielk1977Add some assert() statements to the asychronous backend...
2007-11-01  drhAdd a prototype "group_concat()" aggregate function...
next