- 5596eb3 Return immediately if sqlite3PagerWrite() is called when the pager is in PAGER_ERROR state. by dan ยท 10 years ago cacheflush
- e8e6657 Test that calling sqlite3_db_cacheflush() does not interfere with savepoints. by dan ยท 10 years ago
- 9fb13ab Do not attempt to flush the pages of an in-memory database to disk if sqlite3_db_cacheflush() is called. by dan ยท 10 years ago
- 4a6beac Add a test case that calls sqlite3_db_cacheflush() on an in-memory database. by dan ยท 10 years ago
- dbf6773 Avoid automatically rolling back the transaction if an SQLITE_IOERR or SQLITE_FULL error occurs within sqlite3_db_cacheflush(). by dan ยท 10 years ago
- 6fa255f Add experimental API sqlite3_db_cacheflush(). by dan ยท 10 years ago
- 9109b7f Factor out adding NOT expression nodes in the parser into a subroutine. by drh ยท 10 years ago
- 36c33aa Have contentless and external content fts5 tables ignore "OR REPLACE" conflict handling. by dan ยท 10 years ago
- 24b8457 Fix problems with prefix queries in fts5. by dan ยท 10 years ago
- 1bbbd85 Provide hints to the storage engine using the sqlite3BtreeCursorHint() by drh ยท 10 years ago
- f7854c7 Split out sqlite3BtreeCursorHintFlags() from sqlite3BtreeCursorHint() by drh ยท 10 years ago
- 2853c68 Add new extended error code SQLITE_IOERR_AUTH. by dan ๏ฟฝ๏ฟฝ 10 years ago
- c5dc3dc Merge the BTREE_FORDELETE enhancement with this branch. by dan ยท 10 years ago
- 0691191 Merge in all trunk changes prior to the BTREE_FORDELETE enhancement. by drh ยท 10 years ago
- ad61c46 Capture BTREE_FORDELETE test cases that were mistakenly omitted from the by drh ยท 10 years ago
- 3d541a5 Provide the BTREE_FORDELETE flag to sqlite3BtreeCursor() if the cursor will by drh ยท 10 years ago
- 433d5aa Fix an uninitialized variable problem in the test code added by the previous commit. by dan ยท 10 years ago
- 6b51364 Test that the binary record "0x01 0x00" is interpreted by OP_Column as a vector of NULL (or default) values. by dan ยท 10 years ago
- 4dd83a2 Fix a C99-ism and a harmless compiler warning. by drh ยท 10 years ago
- 46e6ea0 When compiling with SQLITE_HAS_CODEC, honor the hexkey= query parameter on by drh ยท 10 years ago
- 56d90be Remove an unreachable branch in malloc.c. by drh ยท 10 years ago
- fb785b2 When creating an automatic-index on a sub-query, add a unique integer to the end of each index key to ensure the entire key is unique. Fix for [8a2adec1]. by dan ยท 10 years ago
- 2b4e952 Remove an unused #define from whereInt.h. Add comments describing the new sqlite3BtreeCursor() flags. by dan ยท 10 years ago
- fd261ec Modifications to pass a flag to internal routine sqlite3BtreeCursor() when a cursor that is used solely for deleting b-tree entries, or for obtaining the components of keys to delete from other b-trees, is opened. by dan ยท 10 years ago
- 7ef855f Alternate compiler warning fix for sqlite3StatusHighwater. by mistachkin ยท 10 years ago
- 16158ee Fix harmless compiler warnings in FTS5. by mistachkin ยท 10 years ago
- 1dfaa5c Fix compilation of 'testfixture' with MSVC when the FTS5 and JSON1 extensions are enabled. by mistachkin ยท 10 years ago
- 99b2530 Remove some branches made unreachable by recent changes from fts5. by dan ยท 10 years ago
- f2c9995 Minor optimization for fts5 queries. by dan ยท 10 years ago
- 5c22e82 Add extra debugging function to test_rbu.c. Enhance the documentation for sqlite3rbu_db() to define the validity of the returned database handles. by dan ยท 10 years ago
- 6d7734c Fix harmless compiler warnings in FTS5. by mistachkin ยท 10 years ago
- 219f4d4 More optimizations for fts5 prefix queries. by dan ยท 10 years ago
- 9cc4ae6 Fix #line directives added to generated file fts5.c. by dan ยท 10 years ago
- 3f9bfa7 Initialize variables in the fts5 integrity-check code to avoid compiler warnings. by dan ยท 10 years ago
- 8789fbb Another optimization for fts5 prefix (and other) queries. by dan ยท 10 years ago
- 5e5b454 Another tweak to improve performance of fts5 prefix queries. by dan ยท 10 years ago
- 3c060c2 Fix a problem in the fts5txt2db.tcl script causing it to fail when creating tables with more than 8 columns. by dan ยท 10 years ago
- 0206920 Add tests to cover new branches added to the fts5 code by the previous commit. by dan ยท 10 years ago
- 05903e6 Handle equality and range constraints on the "term" column of fts5vocab tables. Also have the same module report columns using names instead of indexes. by dan ยท 10 years ago
- b0df963 Fix a comment in expr.c and add a CORRUPT_DB to an assert() in btree.c. by drh ยท 10 years ago
- 0030aaa Merge recent enhancements from trunk. Version now 3.9.1. by drh ยท 10 years ago
- f170ea4 Enhancements to the MSVC makefile. by mistachkin ยท 10 years ago
- 04ce31f Merge the 3.9.1 changes into trunk. (This only updates the version number by drh ยท 10 years ago
- a649776 Version 3.9.1 by drh ยท 10 years ago version-3.9.1
- 0b08640 Cherrypick the json form-feed fix, and other #ifdef and build script changes by drh ยท 10 years ago
- 1cfc443 Fix the fuzzershell utility program so that it compiles with the by drh ยท 10 years ago
- 4947265 Fix the JSON1 extension so that it does not depend on isdigit() and by drh ยท 10 years ago
- b9e8f59 Form-feed is not valid whitespace for json. Fix for ticket [57eec374ae1d0a1d] by drh ยท 10 years ago
- be37c12 Have the sqlite3VdbeSerialType() function go ahead and compute the serial by drh ยท 10 years ago
- faf3727 Use a lookup table to compute the content length for serial types less by drh ยท 10 years ago
- 95fa606 Simplify the OP_Column logic slightly. One very small performance by drh ยท 10 years ago
- 848a332 OP_Column optimization: Do not check for an oversize row header unless the by drh ยท 10 years ago
- c24658b Improved header comment on the tool/vdbe_profile.tcl script. No changes to code. by drh ยท 10 years ago
- c6ce3883 Performance optimization for the OP_Column opcode. by drh ยท 10 years ago
- ce78bc6 Enhance the use of the column cache for UPDATE statements, making them by drh ยท 10 years ago
- fed7ac6 Add the OP_IntCopy opcode - an optimized version of OP_SCopy that only works by drh ยท 10 years ago
- 9eef8c6 Optimization to the out2Prerelease() helper routine in the VDBE engine. by drh ยท 10 years ago
- 59a0523 Remove a superfluous conditional from the memory allocation initialization. by drh ยท 10 years ago
- 039ca6a Performance optimizations to the sqlite3MallocSize() by requiring the by drh ยท 10 years ago
- b02392e Change sqlite3StatusSet() into sqlite3StatusHighwater() so that only the by drh ยท 10 years ago
- 9676c48 Make sure sqlite.h is not #included by itself. by drh ยท 10 years ago
- 8873996 In the MSVC makefile, add LIBTCLPATH variable to make it easier to run tests when the Tcl library is not already present in the PATH. by mistachkin ยท 10 years ago
- 460cd9c In the MSVC makefile, make sure LDFLAGS is used for the tool executables as well. by mistachkin ยท 10 years ago
- 5f93ccd Tests and minor fixes to improve coverage of FTS5 code. by dan ยท 10 years ago
- cdabd7b Fix harmless compiler warnings. by mistachkin ยท 10 years ago
- 99f4647 Merge in all the 3.9.0 updates from trunk. by drh ยท 10 years ago
- fdefc36 Update makefiles to remove all uses of "awk" - to make building SQLite easier by drh ยท 10 years ago
- 78e3f61 Enable cross-compiling the various tool EXEs with MSVC. by mistachkin ยท 10 years ago
- 501b402 Fixes to the JSON1 extension and to its use by fuzzcheck to avoid problems by drh ยท 10 years ago
- 0216435 Fix fuzzcheck.c so that it assumes that JSON1 is already compiled in and by drh ยท 10 years ago dll-build-fix
- 8d32e80 Avoid exporting sqlite3_json_init() from amalgamation builds. by dan ยท 10 years ago
- b43b711 Version 3.9.0 by drh ยท 10 years ago version-3.9.0
- f4f9684 Add the missing 'extern "C" {...}' blocks to fts5.h and sqlite3rbu.h. by dan ยท 10 years ago
- cec7dec Remove the unused fts5ExprColsetTest() routine. by drh ยท 10 years ago
- f2c26ed Fix a couple harmless compiler warnings. by mistachkin ยท 10 years ago
- df705d8 Further tweaks to improve fts5 prefix query performance. by dan ยท 10 years ago
- 58a8a92 Change all references to 3.8.12 into 3.9.0. Comment changes only - no by drh ยท 10 years ago
- fcbe99a Remove AWK requirement from the MSVC batch build tool. by mistachkin ยท 10 years ago omit-awk
- cf9fb7e The TclKit batch tool should not download the TclKit SDK when the TCLKIT_NOSDK environment variable is set. by mistachkin ยท 10 years ago
- bfad7be Detect and report circularly defined views even if the views have the by drh ยท 10 years ago
- 2906490 Remove an unreachable branch in the query flattener substitution logic. by drh ยท 10 years ago
- d12b636 Improved substitution logic in the query flattener. Saves code space, and by drh ยท 10 years ago
- 5b66350 Enhance TclKit batch tool (and MSVC makefile) to support targets that require the Tcl stub library. by mistachkin ยท 10 years ago
- 48310f8 Work around a "security feature" bug in memcpy() on OpenBSD. by drh ยท 10 years ago
- 72724da Remove another instance of strcpy() from FTS5, to mollify OpenBSD. by drh ยท 10 years ago
- c5971cc Omit the use of strcpy() in FTS5 since OpenBSD hates strcpy(). by drh ยท 10 years ago
- 728e0f9 Compiler warning fixes: Rename some local variables from "j1" to avoid a by drh ยท 10 years ago
- 9a4718f Add some #ifdef-ery to json1.c to avoid a duplicate typedef when used in the by drh ยท 10 years ago
- ba461ca Remove a couple superfluous double quotes in the MSVC makefile. by mistachkin ยท 10 years ago
- 946ef60 Fix typo in the MSVC makefile. Replace remaining uses of AWK in the MSVC makefile with a Tcl script. by mistachkin ยท 10 years ago
- cc73048 More fine-tuning to the new TclKit tools. by mistachkin ยท 10 years ago
- a0882fa The previous fix to JSON1 was not complete. A few more tweaks are needed by drh ยท 10 years ago
- dfff1ff Tweak batch tool added in the previous check-in to permit the base URI to be overridden. by mistachkin ยท 10 years ago
- 8deb4b8 Fix the JSON1 extension so that it renders integers outside the range by drh ยท 10 years ago
- 6cac258 Remove fts5 sources from TESTSRC2 in main.mk as there is no SQLITE_TEST code in said files. by dan ยท 10 years ago
- 80372ae Add tool capable of downloading a TclKit (and its associated SDK) on Windows. by mistachkin ยท 10 years ago
- 2572751 Add --enable-fts5 and --enable-json1 options to the amalgamation autoconf package. by dan ยท 10 years ago
- 8381be4 In the MSVC makefile, adjust the names of two nmake variables for consistency. by mistachkin ยท 10 years ago
- c4e6d17 Change the version number of the next release to 3.9.0. by drh ยท 10 years ago
- b5c8d27 Add the JSON1 and FTS5 extensions to the amalgamation. Add new options by drh ยท 10 years ago