]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2018-06-30  danFix a minor problem in the code for determining whether... exp-window-functions
2018-06-30  danMerge all changes from the weak-fallback branch except...
2018-06-30  danHave the tokenizer handle fallback for tokens "OVER... weak-fallback
2018-06-29  danFurther performance related tweaks for sqlite3RunParser().
2018-06-29  danFurther tweaks to sqlite3RunParser().
2018-06-29  danImprove on the previous checkin. Still a bit slow.
2018-06-29  danInstead of using a lemon %fallback directive, have...
2018-06-28  danModifications to parse.y to better support backwards...
2018-06-28  drhIntroduce the concept of "weak fallback" in the parser...
2018-06-27  danAdd missing VdbeCoverage() and VdbeCoverageNeverTaken...
2018-06-27  danAvoid redundant ORDER BY operations when rewriting...
2018-06-26  danMerge latest trunk changes.
2018-06-25  danAdd documentation comment for sqlite3_create_window_fun...
2018-06-25  danFix another problem that could cause a crash when a...
2018-06-23  danFix problems with using window-functions in correlated...
2018-06-23  danFix a problem with using LIMIT in window-function queries.
2018-06-23  danFix a problem with using a window-function SELECT as...
2018-06-22  danOmit all window-function related code when building...
2018-06-22  danMerge latest trunk changes.
2018-06-21  drhImproved context for error_log message coming from...
2018-06-21  danFix a problem with handling single row partitions in...
2018-06-20  danAdd tests to improve coverage of code in window.c....
2018-06-19  danMerge latest trunk changes with this branch.
2018-06-19  danFix a problem caused by a sub-query containing a window...
2018-06-19  danFix a problem with using min() or max() as a window...
2018-06-19  drhMinor change to the input grammar to make the parser...
2018-06-18  danFix problems with using window functions in CREATE...
2018-06-18  danAdd test case for the fix in the previous commit.
2018-06-18  mistachkinFix typo in the 'normalize' extension.
2018-06-18  danEnsure that all four callbacks are provided when regist...
2018-06-18  danAdd new API function sqlite3_create_window_function...
2018-06-15  danAdd extra OOM test.
2018-06-15  danFix another problem in lead()/lag(). And some errors...
2018-06-15  danFix a bug in the lead() and lag() window functions...
2018-06-14  danFix a problem with handling of statements containing...
2018-06-14  danFix problem with window functions min() and max() when...
2018-06-14  danMerge latest trunk changes into this branch.
2018-06-14  danImprove comments and code legibility in new file window.c.
2018-06-13  danFix problems with "RANGE BETWEEN CURRENT ROW AND UNBOUN...
2018-06-13  drhOutput infinity as 1e999 in the ".dump" command of...
2018-06-13  drhPad out the sqlite3_value structure to be a multiple...
2018-06-13  danFix some test case numbers in expert1.test.
2018-06-13  danUnless SQLITE_OMIT_AUTOINIT is defined, allow sqlite3_v...
2018-06-13  danCheck that malloc() has not already failed when invokin...
2018-06-13  drhAdd the unused SQLITE_CANTOPEN_DIRTYWAL result code...
2018-06-12  danFix another issue to do with window-functions in aggreg...
2018-06-12  drhDocumentation update: clarify that sqlite3_errcode...
2018-06-12  drhDocumentation updates: clarify the behavior of sqlite3_...
2018-06-12  danFix some problems with using window-functions in aggreg...
2018-06-12  drhImprovements to SCopy correctness tracking when SQLITE_...
2018-06-12  drhFix the "Synopsis" on the OP_BitNot opcode.
2018-06-11  drhImprovements to the --enable and --disable options...
2018-06-11  danClarify the relationship between a Window object and...
2018-06-11  drhFix various --enable and --disable options on the top...
2018-06-11  danFix handling of window frames containing negative numbe...
2018-06-11  drhFix the column cache invalidation logic in the code...
2018-06-11  drhAdd the OP_SetTabCol and OP_VerifyTabCol opcodes, only...
2018-06-11  drhStrengthen the sqlite3VdbeMemAboutToChange() run-time...
2018-06-11  danFix a typon in main.mk.
2018-06-11  drhAlways initialize the WhereClause.hasOr field that...
2018-06-10  danUpdate Makefile.msc to include window.c in the build.
2018-06-09  drhFix a typo in the amalgamation autoconf file.
2018-06-09  danMerge recent trunk changes with this branch.
2018-06-09  danUpdate the amalgamation build script to include window.c.
2018-06-09  danAdd support for FILTER clause on aggregate window funct...
2018-06-09  drhSlightly smaller and faster code by encapsulating wal...
2018-06-09  drhImproved comments an presentation for the recent IN...
2018-06-09  drhPerformance improvement to sqlite3WhereExprUsage().
2018-06-09  drhCompute the bitmask of indexed columns for each index...
2018-06-09  drhAvoid invoking the whereLoopAddOr() routine in the...
2018-06-08  drhWhen the query planner has the opportunity to use an...
2018-06-08  drhOnly choose to scan an IN operator rather than use...
2018-06-08  danAdd support for the WINDOW clause.
2018-06-08  drhMerge the btreeNext() assertion bug fix from trunk.
2018-06-08  drhFix an assert() that can be false for a corrupt databas...
2018-06-08  drhConsider doing a partial table scan to fulfill an IN...
2018-06-08  danDo not flatten sub-queries that contain window functions.
2018-06-08  danFixes to allow group_concat() to be used as a window...
2018-06-07  danMerge latest trunk changes with this branch.
2018-06-07  danAdd window functions lag() and lead().
2018-06-07  drhThe IN-early-out optimization: When doing a look-up...
2018-06-07  drhFix the assert()s in the byte-code engine that prove... multikey-opt-idea
2018-06-07  danAdd support for window function first_value().
2018-06-07  drhRemove the NextIfOpen and PrevIfOpen opcodes which...
2018-06-07  drhTest cases.
2018-06-07  danFix problems with the nth_value() function.
2018-06-07  drhMerge the ".stat/.eqp" CLI fix from trunk.
2018-06-07  drhAvoid using a prepared statement for ".stats on" after...
2018-06-07  drhAdd the WHERE_IN_EARLYOUT flag and use it to clarify...
2018-06-07  drhMerge recent trunk enhancements.
2018-06-06  drhChange a comma into a logically equivalent but semantic...
2018-06-06  drhMore space and performance enhancements to sqlite3VdbeR...
2018-06-06  danAdd implementation of nth_value() window function.
2018-06-06  drhSmall performance optimization in sqlite3VdbeRecordComp...
2018-06-06  drhRearrange the order of some checks in the integrity_che...
2018-06-06  drhFix the sqlite3BeginTrans() calls within the snapshot...
2018-06-06  drhAnother minor optimization to OP_Transaction.
2018-06-06  drhChange sqlite3BtreeBeginTrans() to return the BTREE_SCH...
2018-06-06  drhFix the ".archive" command in the CLI (and the correspo...
2018-06-05  drhUpdate the version number to 3.25.0 for the next develo...
next