/ Timeline
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

50 check-ins occurring around becaaa4d29d17ad6.

2019-08-02
19:40
If a query like "SELECT min(a), b FROM t1" visits no rows where "a" is not null, extract a value for "b" from one of the rows where "a" is null. Fix for ticket [41866dc37]. check-in: faaaae4940 user: dan tags: trunk
18:43
If a query like "SELECT min(a), b FROM t1" visits no rows where "a" is not null, extract a value for "b" from one of the rows where "a" is null. Possible fix for ticket [41866dc37]. Closed-Leaf check-in: a7277ed062 user: dan tags: tkt-41866dc37
2019-08-01
22:48
The sqlite3_set_authorizer() interface should only expire prepared statements when it is setting a new authorizer, not when clearing the authorizer. And statements that are running when sqlite3_set_authorizer() is invoked should be allowed to continue running to completion. check-in: 961e2f08c3 user: drh tags: trunk
15:18
Add new release tests for windows to releasetest_data.tcl. check-in: 1b330ec24c user: dan tags: trunk
10:58
Fix a problem in ALTER TABLE triggered by views or triggers that include the construction "ORDER BY true" or "ORDER BY false". check-in: 8168021f9a user: dan tags: trunk
2019-07-31
21:08
Update "releasetest_data.tcl" so that it is a standalone script that generates sh or batch scripts to run each tcl test run at release time. Update wapptest.tcl to use it. check-in: 559c2dd672 user: dan tags: trunk
15:16
New test cases in test/fuzzdata8.db. check-in: 6e92d71c24 user: drh tags: trunk
12:13
Do not allow the json_set() function to overwrite the same element more than once. check-in: f237f60e4f user: drh tags: trunk
2019-07-30
21:00
Fix the build for when -DSQLITE_SMALL_STACK is used. check-in: b9eda2249a user: drh tags: trunk
14:22
Improved fix for ticket [ced41c7c7d6b4d36] that keeps skip-scan enabled, but avoids identifying a skip-scan as order-distinct (because it is not) and thus forces a separate b-tree to implement the DISTINCT clause of a query. This undoes check-in [a871d69c6de65038] and substitutes a new fix. check-in: 89bf0399e8 user: drh tags: trunk
01:17
Disable the skip-scan optimization for DISTINCT queries. Fix for ticket [ced41c7c7d6b4d36] check-in: a871d69c6d user: drh tags: trunk
2019-07-29
17:18
Convert an assert() in R-Tree into a database corruption detection case. check-in: 48b518eb6f user: drh tags: trunk
16:53
Fix a crash in fts3 caused by corrupt database records. check-in: 11f7f94f1c user: dan tags: trunk
15:32
When using an index for both DISTINCT and ORDER BY, do not confuse the number of columns required for distinctness with the number required to get the correct sort order. Fix for [6749cb3c]. check-in: 6ac0f82245 user: dan tags: trunk
14:42
When using an index for both DISTINCT and ORDER BY, do not confuse the number of columns required for distinctness with the number required to get the correct sort order. Fix for [6749cb3c]. Closed-Leaf check-in: b47169319a user: dan tags: tkt-6749cb3c
06:06
Fix the OP_Affinity operator so that when applying REAL affinity, it only sets MEM_IntReal if the integer value will fit in 6 bytes or less. Fix for ticket [ba2f4585cf495231] check-in: 2b221bb15f user: drh tags: trunk
05:23
Fix a minor typo in a comment. check-in: cea8a892f7 user: drh tags: trunk
02:52
Sync up warning related compiler options in the Makefiles for MSVC. check-in: e77d48d1dd user: mistachkin tags: trunk
02:49
Fix harmless compiler warning seen with MSVC for x64. check-in: 857b2ba6d0 user: mistachkin tags: trunk
2019-07-26
20:54
Merge latest changes from trunk into this branch. check-in: 7f1e4e4b99 user: dan tags: reuse-schema
20:33
Update RBU so that it supports indexes on expressions. check-in: 6bfa44da22 user: dan tags: trunk
16:16
Fix RBU handling of partial indexes with comments embedded in their CREATE INDEX statements. check-in: e1ccf211aa user: dan tags: trunk
2019-07-25
19:29
Fix a potential buffer overread in fts5 triggered by a corrupt database record. check-in: 16472112b6 user: dan tags: trunk
2019-07-24
23:15
Fix faulty asserts in the code generator. Ticket [c52b09c7f38903b1] check-in: 01cdc590f7 user: drh tags: trunk
20:10
Improve the ".recover" command so that it handles intkey pages linked into non-intkey b-trees, and vice-versa, better. check-in: 9c458acba5 user: dan tags: trunk
19:20
Improve the ".recover" command's handling of corrupt database schemas. check-in: becaaa4d29 user: dan tags: trunk
08:15
Improve the ".recover" command in the shell tool so that it is not confused by auto-vacuum databases. And so that it can recover tables for which one or more of the column names are SQL keywords. check-in: 87d76047d6 user: dan tags: trunk
2019-07-23
13:26
Avoid redefining types u32 and u16 when fossildelta.c is compiled as part of the amalgamation. check-in: d8e88248e3 user: dan tags: trunk
2019-07-22
23:30
Do not use the insert-overwrite optimization if the cell might overwrite the page header. Leaf check-in: 9991626b25 user: drh tags: branch-3.29
23:24
Do not use the insert-overwrite optimization if the cell might overwrite the page header. check-in: f60a830691 user: drh tags: trunk
19:01
Consolidate the removal of Window objects from the Select.pWin list into a single subroutine. check-in: e46b2afc99 user: drh tags: trunk
17:28
Fix a bug in the linked-list handling code added by commit [fd7316cd]. check-in: 05080344dc user: dan tags: trunk
16:57
New test cases added to test/fuzzdata8.db check-in: 25fec62ac5 user: drh tags: trunk
16:33
Remove Window objects from the corresponding Select.pWin list when they are deleted, as they are, for example, when the ORDER BY clause is optimized out. check-in: fd7316cda0 user: dan tags: trunk
16:20
Remove Window objects from the corresponding Select.pWin list when they are deleted. Closed-Leaf check-in: d23f331682 user: dan tags: winfunc-in-orderby
11:38
Fix a problem with renaming tables when the schema contains an invocation of a currently unregistered aggregate with a FILTER clause. check-in: bd37ce3fb8 user: dan tags: trunk
2019-07-20
21:12
Make sure any window definitions in an ORDER BY clause are removed from the SELECT statement if the ORDER BY clause gets optimized out. check-in: 23b119671f user: drh tags: winfunc-in-orderby
18:00
Early detection of a corrupt R-Tree in the R-Tree search algorithm. check-in: 2bf5a4c164 user: drh tags: trunk
17:43
Performance optimizations in the rtreeStepToLeaf() routine of RTree. check-in: 4e34e3615f user: drh tags: trunk
2019-07-19
15:03
New test cases added to test/fuzzdata8.db. check-in: 39be3c61bd user: drh tags: trunk
15:00
Refinement to check-in [348e7f193a963390] that avoids unreachable branches. check-in: bbfb2908ec user: drh tags: trunk
14:32
Fix a problem with renaming a table when the schema contains an invocation of a window function that is not currently registered. check-in: ff290feb97 user: dan tags: trunk
11:20
Fix a problem with renaming tables when the schema contains WINDOW definitions with (illegal) non-numeric expressions as part of a PRECEDING or FOLLOWING clause. check-in: 348e7f193a user: dan tags: trunk
10:31
Fix a faulty assert() in walker.c that could fail when processing an ALTER TABLE statement on a schema containing invalid table references that are part of a WINDOW definition. check-in: ee076c28d8 user: dan tags: trunk
01:25
Fix a new problem in the BETWEEN operator when applied to a window function. The problem was introduced yesterday by check-in [7ef7b23cbb1b9ace]. This cherry-pick also needed to remove an assert from sqliteExprDelete(). check-in: ce6bf395e2 user: drh tags: branch-3.29
01:11
Fix a new problem in the BETWEEN operator when applied to a window function. The problem was introduced yesterday by check-in [7ef7b23cbb1b9ace]. check-in: 47e23064ba user: drh tags: trunk
2019-07-18
20:55
Fix a problem where self-joins on views that are aggregate queries may return the wrong result. Cherrypick of [74ef97bf51dd531a]. check-in: 2f0a564f6e user: mistachkin tags: branch-3.28
19:50
Add a ctime.c entry for SQLITE_ENABLE_SHARED_SCHEMA. check-in: 892ac94511 user: drh tags: reuse-schema
13:33
Modify the bits used for special flags on this branch to account for the fact that some of them are now used for other purposes. check-in: 5a8d0f50f3 user: dan tags: reuse-schema
2019-07-17
19:57
Always use the stdlib.h intptr_t type for pointer-integer conversions, when it is available. check-in: c0d932449d user: drh tags: trunk