Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
50 ancestors of 38d31e189e7c7899
2016-09-01
| |||
09:35 | If SQLITE_ENABLE_ZIPVFS is defined, journal_mode=off is configured and a savepoint or statement rollback is attempted, move the pager into the error state to prevent the transaction from being committed. This makes it safe to use journal_mode=off with zipvfs under some conditions. | check-in: 38d31e189e user: dan tags: trunk | |
2016-08-29
| |||
14:18 | Use some of the example code from the sessions documenatation in the sessions test cases. | check-in: 6602974d17 user: dan tags: trunk | |
2016-08-27
| |||
20:21 | Fix typos in comments. No changes to running code. | check-in: a07269f2a0 user: drh tags: trunk | |
18:35 | Fix some comments in sqlite3session.h. No changes to code. | check-in: 78cd64e202 user: dan tags: trunk | |
18:34 | Fixes to fts5 snippet() function. | check-in: d464a7b18d user: dan tags: trunk | |
14:05 | Fix the extra comments (added with -DSQLITE_ENABLE_EXPLAIN_COMMENTS) so that the sense of <, <=, >, and >= tests is correct and so that the SQLITE_STOREP2 version is shown correctly. These changes are already in the rowvalue branch but are added here since they are technically unrelated to rowvalue. | check-in: 4d43c4698e user: drh tags: trunk | |
2016-08-26
| |||
12:00 | Fix a problem in internal function sqlite3OpenTableAndIndices causing an operand of an unrelated VM instruction to be overwritten. Fix for [ef360601]. | check-in: 7090147903 user: dan tags: trunk | |
04:32 | Rename a test procedure in 'speed3.test' to avoid a name collision. | check-in: 84de17bc68 user: mistachkin tags: trunk | |
02:10 | Adapt the special case of '$' in item names for test 'vtabH-3.1' as well. | check-in: e4aeaa2bc7 user: mistachkin tags: trunk | |
01:47 | Make the test 'vtabH-3.1' work when there are less than 5 top-level items. | check-in: 328f79bb57 user: mistachkin tags: trunk | |
01:17 | Support running the fstree tests in 'vtabH.test' on Windows when not using the system drive. | check-in: 3680f95ff3 user: mistachkin tags: trunk | |
2016-08-25
| |||
23:24 | Fix typos in 'vtabF.test' file. No changes to code. | check-in: a8546feec9 user: mistachkin tags: trunk | |
22:06 | Fix the sqlite3_trace_v2() interface so that it goes disabled if either the callback or mask arguments are zero, in accordance with the documentation. | check-in: 37e6c54b1a user: drh tags: trunk | |
2016-08-24
| |||
18:50 | Fix a bug in the fts5 snippet function causing it to return text containing zero phrase instances. | Closed-Leaf check-in: b174ed2bde user: dan tags: fts5-snippet-bias | |
18:21 | Sync up the MSVC autoconf makefile. | check-in: 77f7c31a3a user: mistachkin tags: trunk | |
2016-08-23
| |||
14:42 | Fix the SQLITE_USER_AUTHENTICATION login check so that the SQLITE_AUTH_USER error code correctly propagates and is not overwritten by SQLITE_ERROR. | check-in: c640489db2 user: drh tags: trunk | |
2016-08-22
| |||
20:10 | Add support for the SQLITE_DBCONFIG_MAINDBNAME configuration option. | check-in: 7839519349 user: drh tags: trunk | |
2016-08-20
| |||
17:23 | Fix other minor problems with the fts5 snippet() function. | check-in: b56b2a85cf user: dan tags: fts5-snippet-bias | |
2016-08-19
| |||
18:37 | Register any built-in fts5 module before loading automatic extensions. This allows automatic extensions to register fts5 tokenizers and auxiliary functions. | check-in: b10e31dce8 user: dan tags: fts5-snippet-bias | |
15:17 | Merge the VACUUM attached database enhancement from trunk. | Closed-Leaf check-in: 12d5e38d26 user: drh tags: dbconfig_maindbname | |
15:15 | Enhance the VACUUM command so that it can operate on an attached database. | check-in: 083f9e6270 user: drh tags: trunk | |
15:12 | Disable row counting on queries run while doing a VACUUM. | Closed-Leaf check-in: ad35ef1162 user: drh tags: vacuum-attached-db | |
14:25 | Have the fts5 snippet() function avoid favouring snippets that begin with sentences that do not contain search terms. Add an extra bias in favour of the first sentence in the document. | check-in: d8180af2ad user: dan tags: fts5-snippet-bias | |
14:20 | Add the capability to VACUUM an attached database by specifying the schema name as an argument to the VACUUM command. Since version 2.0, VACUUM has accepted an argument which was silently ignored. Now it has meaning. | check-in: 29d63059b4 user: drh tags: vacuum-attached-db | |
2016-08-18
| |||
22:44 | Add the SQLITE_DBCONFIG_MAINDBNAME interface. | check-in: d6e3d5796c user: drh tags: dbconfig_maindbname | |
22:19 | Change the name of Db.zName to Db.zDbSName for improved long-term code maintainability. | check-in: cb9865e14d user: drh tags: trunk | |
20:56 | Fix a zName to zDbSName conversion missed in the previous check-in. | Closed-Leaf check-in: d7cf423cdc user: drh tags: zDbSName | |
14:47 | Adjust some tests to account for recent changes to the fts5 snippet function. | check-in: 184ecbe9c0 user: dan tags: fts5-snippet-bias | |
14:33 | Rename the Db.zName field to Db.zDbSName to make it more descriptive and to distinguish it from all of the other "zName" variables scattered throughout the code. | check-in: 92a22f0134 user: drh tags: zDbSName | |
2016-08-17
| |||
19:05 | Bias the fts5 snippet() function to return snippets that look like they start at the start of sentences. | check-in: 60de159476 user: dan tags: fts5-snippet-bias | |
11:14 | Fix a problem in the fts5 snippet() auxiliary function. | check-in: a861713cc6 user: dan tags: trunk | |
2016-08-16
| |||
16:46 | Fix a bug in destructor processing of Lemon. That has no impact on the SQLite grammar. The bug was introduced by prior work to optimize the Lemon-generated parser used by SQLite. | check-in: f9035b8e2e user: drh tags: trunk | |
2016-08-13
| |||
10:34 | Fix an fts5 problem with corrupt database handling found by address-sanitizer. | check-in: e22252e1da user: dan tags: trunk | |
06:38 | Fix a buffer overread in fts5. | check-in: fcfbee6c7d user: dan tags: trunk | |
2016-08-11
| |||
18:05 | Add the "modeof=<filename>" URI parameter to os_unix.c - used to specify a file to copy permissions from when a new database is created. Also allow passing NULL as the second parameter to sqlite3rbu_vacuum(). | check-in: ed406d31ff user: dan tags: trunk | |
09:55 | Fix a 1 byte buffer overwrite in the "sqldiff --rbu" command. | check-in: ab83d7077d user: dan tags: trunk | |
01:24 | Fix a harmless compiler warning in FTS5. | check-in: 2ea0c8b46e user: drh tags: trunk | |
2016-08-10
| |||
20:02 | Optimization to sqlite3WhereExprUsage(). | check-in: 95493058fc user: drh tags: trunk | |
19:43 | List of MATCH operator names in isMatchOfColumn() should be constant. | check-in: 7319d676aa user: drh tags: trunk | |
18:56 | Performance enhancement in the expression walker. | check-in: ebccbd9609 user: drh tags: trunk | |
15:02 | Tweaks to pcache1TruncateUnsafe() to make it slightly smaller and faster and easier to test. | check-in: 059f4e2efe user: drh tags: trunk | |
14:40 | Rearrange the code inside sqlite3RunParser() routine so that sqlite3Parser() is only called from a single place. This allows sqlite3Parser() to be in-lined, which results in a 0.25% overall performance gain. | check-in: 25d1d02b3e user: drh tags: trunk | |
13:34 | Increment the version number to 3.15. | check-in: 8c2701e70a user: drh tags: trunk | |
13:30 | Improved comments on the lempar.c parser template. Adjust the YY_SHIFT_USE_DFLT constant in the Lemon-generated parser tables so as to guarantee that it is always out of range of the yy_lookahead[] table. | check-in: 83622f3f50 user: drh tags: trunk | |
11:50 | Fix pcache1TruncateUnsafe() run faster for the case where iLimit is very close to iMaxKey. | check-in: b07a26df06 user: drh tags: trunk | |
03:35 | Try to make pcache1TruncateUnsafe() run faster for the case where iLimit is very close to iMaxKey. | Leaf check-in: 9ab53605d5 user: drh tags: debug | |
01:43 | Performance optimization in the yy_find_shift_action() routine of the Lemon-generated parser. | check-in: ba6663beef user: drh tags: trunk | |
2016-08-09
| |||
21:01 | Fix harmless compiler warning. | check-in: 9a5a4f6e3b user: drh tags: trunk | |
19:48 | Minor update to the way fts5 column filters are parsed. | check-in: 14864f2b84 user: dan tags: trunk | |
19:26 | Have fts5 interpret column lists that begin with a "-" character as "match any column except" lists. | check-in: e517545650 user: dan tags: trunk | |
2016-08-08
| |||
13:40 | Version 3.14 | check-in: d5e9805702 user: drh tags: trunk, release, version-3.14.0 | |