]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2002-03-23  drhFix a bug in subquery generation when the subquery...
2002-03-20  drhVersion 2.4.2 (CVS 441)
2002-03-20  drhOne more change before 2.4.2: Make the os.h header...
2002-03-19  drhVersion 2.4.2 (CVS 433)
2002-03-18  drhFix an uninitialized variable in AggReset() (CVS 432)
2002-03-14  drhBug fix: allow ROWID as a column in SELECT statements...
2002-03-13  drhVersion 2.4.1 (CVS 442)
2002-03-13  drhVersion 2.4.1 (CVS 430)
2002-03-13  drhFix bug in anonymous subquery in a join. Parser requir...
2002-03-12  drhFix the return type of the xStep function in the FuncDe...
2002-03-11  drhChange the way that lemon handles %extra_argument....
2002-03-11  drhVersion 2.4.0 (CVS 443)
2002-03-11  drhPreparing for the 2.4.0 release. (CVS 426)
2002-03-10  drhBug fix: updates within a transaction would fail if...
2002-03-08  drhAdded prototypes to sqlite.h for sqlite_freemem(),...
2002-03-07  drhFix a bug in the sorting of compound selects. (CVS...
2002-03-06  drhBeta 2 (CVS 422)
2002-03-06  drhAdded the default_cache_size and default_synchronous...
2002-03-06  drhOptimizations to the processing of integer comparisons...
2002-03-05  drhChange the pager locking mechanism so that we don't...
2002-03-05  drhAdd the ability to turn of calls to fsync() using the...
2002-03-04  drhUpdates to the documentation. Changed version number...
2002-03-03  drhMore bugs fixed for views. (CVS 416)
2002-03-03  drhVIEWs are bound to tables when they are used, not when...
2002-03-03  drhFix a memory leak in expression processing. (CVS 414)
2002-03-03  drhAdditional tests of flattening (CVS 413)
2002-03-03  drhSuppress superfluous OP_OpenTemps when flattening subqu...
2002-03-03  drhBug fixes and additional tests for the subquery flatten...
2002-03-02  drhPager optimization: do not write or journal free pages...
2002-03-02  drhChange the btree node balancers to sort nodes into...
2002-03-02  drhSubquery flattening is implemented and passes all regre...
2002-02-28  drhBug fix when -DMEMORY_DEBUG is off. (CVS 407)
2002-02-28  drhFix bugs in substr() for UTF-8. (CVS 406)
2002-02-28  drhRemove unused opcodes from the VDBE and fix a bug in...
2002-02-28  drhChange the IFNULL and NVL functions to COALESCE. Chang...
2002-02-28  drhThe new function code passes regression tests. (CVS...
2002-02-28  drhFix the coredump. There are still problems in the...
2002-02-28  drhAdded IFNULL and NVL functions. (CVS 401)
2002-02-28  drhCompletely remove the old SQL function system and repla...
2002-02-27  drhTry to reduce the number of malloc() for user-defined...
2002-02-27  drhRevise the API for user-defined functions. (CVS 398)
2002-02-27  drhThe user-defined function routines failed to detect...
2002-02-27  drhBug fixes in the VIEW implementation. (CVS 396)
2002-02-26  drhComment changes only. (CVS 395)
2002-02-26  drhFix a bug in the quoting of .dump output. By Rajit...
2002-02-24  drhAdded a "stddev()" aggregate function for testing the...
2002-02-24  drhCode for user-defined aggregates added. Legacy tests...
2002-02-24  drhMove the build-in function definitions into a new sourc...
2002-02-23  drhAdded support for user-defined normal functions. Suppo...
2002-02-23  drhModify lemon to use much less memory for its parser...
2002-02-23  drhBug fix in lemon: 3-way conflicts (SHIFT/REDUCE/REDUCE...
2002-02-23  drhCode to implement CREATE VIEW is in place. A quick...
2002-02-21  drhChange the SQLITE_MASTER format to version 2 in prepara...
2002-02-21  drhDo not allow dot-commands to occur in the middle of...
2002-02-19  drhFix a comment. (CVS 384)
2002-02-19  drhNew ROWIDs are numbered sequentially. (CVS 383)
2002-02-19  drhOptimize simple min() and max() queries. (CVS 382)
2002-02-19  drhChange the name of the sanity_check PRAGMA to "integrit...
2002-02-19  drhVersion 2.3.3 (CVS 444)
2002-02-19  drhFinal changes before 2.3.3 (CVS 380)
2002-02-18  drhAdded a C wrapper program to test threading under Unix...
2002-02-18  drhBug fix: CREATE TABLE, followed by DROP TABLE within...
2002-02-18  drhAdd support for CREATE TABLE AS. (CVS 377)
2002-02-18  drhAllow general expressions in the VALUES clause of an...
2002-02-18  drhAdditional tests for the sub-query feature. (CVS 375)
2002-02-18  drhEnhancement to Windows "file-exists" function by Joel...
2002-02-18  drhTest and documentation updates for sub-queries. (CVS...
2002-02-18  drhAdd support for subqueries in the FROM clause of a...
2002-02-17  drhMake the sqliteParseInfoReset() function locale to...
2002-02-14  drhAll identifiers to be quoted in square brackets, for...
2002-02-14  drhVersion 2.3.2 (CVS 446)
2002-02-14  drhFix an incorrect assert() in pager.c. (CVS 369)
2002-02-13  drhVersion 2.3.1 (CVS 445)
2002-02-13  drhBug fix: if PRAGMA full_column_names=ON is set and...
2002-02-03  drhVersion 2.3.0 (CVS 447)
2002-02-03  drhReenable testing code even if NDEBUG is defined. (CVS...
2002-02-03  drhFix a serious bug in INSERT when the source is a SELECT...
2002-02-03  drhPut in PRAGMA SANITY_CHECK in place of VACUUM. (CVS...
2002-02-03  drhThe VACUUM command now does a database sanity check...
2002-02-03  drhFive-algorithm conflict resolution appears to be workin...
2002-02-02  drhGet the ABORT conflict resolution algorithm working...
2002-02-02  drhCheckpoint code added to the pager. Regression tests...
2002-01-31  drhChange to five conflict resolution algorithms: ROLLBACK...
2002-01-30  drhAdded ON CONFLICT support to COPY. Updates to documenta...
2002-01-30  drhBetter testing of the ON CONFLICT logic. (CVS 358)
2002-01-30  drhMore bug fixes in the ON CONFLICT enhancement. (CVS...
2002-01-29  drhThe new ON CONFLICT logic is in and passes the legacy...
2002-01-29  drhBeginning to insert the infrastructure for ON CONFLICT...
2002-01-28  drhVersion 2.2.5 (CVS 448)
2002-01-28  drhBug fix: The IN operator was not working if either...
2002-01-24  drhDo not escape the backslash character in shell output...
2002-01-22  drhVersion 2.2.4 (CVS 449)
2002-01-22  drhConstant ORDER BY or GROUP BY expressions are an error...
2002-01-22  drhFix a bug in the -separator command-line option. (CVS...
2002-01-22  drhThe right-hand side of an AS in a SELECT can be used...
2002-01-16  drhVersion 2.2.3 (CVS 450)
2002-01-16  drhAdded the last_insert_rowid API function. Improved...
2002-01-15  drhAdded implementations for sqliteOsEnterMutex() and...
2002-01-14  drhFix warning messages in VC++. Patches from nicolas3520...
2002-01-14  drhVersion 2.2.2 (CVS 451)
next