- 47a2b4a Avoid using posix_fallocate() in WAL mode, as it is not supported by all file-systems. by dan ยท 13 years ago avoid-fallocate
- 5e2f28c Rebalance FTS expressions after parsing to limit recursion during evaluation. Avoid recursion when deleting FTS expression trees. Enforce a limit (currently 12) on the depth of an expression tree. by dan ยท 13 years ago
- 2ea5400 Merge another trunk change. by dan ยท 13 years ago fts3-expr-rebalance
- 6f77140 Fix harmless compiler warnings in the FTS expression parser. by drh ยท 13 years ago
- 2bba8c2 Reduce the default SQLITE_MAX_MMAP_SIZE slightly so that it fits in a by drh ยท 13 years ago
- 0d02dd8 Merge latest trunk changes. by dan ยท 13 years ago
- aa29c86 Rebalance FTS expressions after parsing to limit recursion during evaluation. Avoid recursion when deleting FTS expression trees. Enforce a limit on the depth of an expression tree. by dan ยท 13 years ago
- ea41dc4 Added the nextchar.c extension. Minor changes to the spellfix.c extension by drh ยท 13 years ago
- e67f418 Fix the tool/build-shell.sh script to remove references to files that are by drh ยท 13 years ago
- d9555a7 Add wiki documentation files for the spellfix1 virtual table. by drh ยท 13 years ago
- c140a6b Merge the std-ext branch into trunk. This merge adds several new extensions by drh ยท 13 years ago
- 8416fc7 Added the transitive_closure, ieee754, and amatch extensions. by drh ยท 13 years ago std-ext
- b7045ab Move the test_spellfix.c module to ext/misc/spellfix.c. by drh ยท 13 years ago
- 1fb64af Fix the MSVC makefile so that it works with the ext/misc/*.c extensions. by drh ยท 13 years ago
- e50db1c Convert the fuzzer virtual table into a loadable extension and move it by drh ยท 13 years ago
- 24b6422 Make test_wholenumber.c into a loadable extension and move it to by drh ยท 13 years ago
- aa87f9a Make sure the affinity and datatype of sub-subqueries are initialized by drh ยท 13 years ago
- ed17167 Fix a simple comment typo. No changes to code. by drh ยท 13 years ago
- 248f2be Make "test_regexp.c" into a loadable extension and move it over to by drh ยท 13 years ago
- da8caa0 Fix harmless compiler warnings. by drh ยท 13 years ago
- d99aaf1 Do not allow a virtual table to cancel the ORDER BY clause unless all by drh ยท 13 years ago
- 4d648c7 Update MSCV makefile for the fts3tokenize virtual table. Clear some by drh ยท 13 years ago
- d7a959c Add virtual table module 'fts3tokenize' to fts3. fts3tokenize provides SQL access to FTS tokenizer implementations. by dan ยท 13 years ago
- b9830a1 Enhanced documentation for the SQLITE_CONFIG_SQLLOG mechanism and the by drh ยท 13 years ago
- 0c41d22 Use transitivity to move constraints into the outer loops of a join whenever by drh ยท 13 years ago
- cca17c3 Add the "warning" command to the TCL test infrastructure. Fix problems by drh ยท 13 years ago
- f8b1c69 Enhance the extension loading mechanism so that the same source code by drh ยท 13 years ago
- 08ef8d7 Make the SQLITE_EXTENSION_INIT1 and SQLITE_EXTENSION_INIT2 macros into by drh ยท 13 years ago loadext
- c288e44 Experiments in making loadable extensions easier to program. The by drh ยท 13 years ago
- 93c8c45 Fix an incorrect comment (a copy/paste error) in the mptester. No code changes. by drh ยท 13 years ago
- bc08281 Add the --breakpoint and --show-sql-errors commands to mptester. by drh ยท 13 years ago
- a956af6 Fix a compiler warning in sqlite3_compileoption_used(). by drh ยท 13 years ago
- 83b5bfc Do not suppress the ORDER BY clause on a virtual table query if an IN by drh ยท 13 years ago
- 44fddca Fix the --match command in mptester so that it checks the entire result, by drh ยท 13 years ago
- 87f9caa In the mptester, add --glob and --notglob and --testcase. Make --exit work by drh ยท 13 years ago
- 7a411f4 In the command-line shell, allow a dot-command to occur after a by drh ยท 13 years ago
- 4670f6d Improvements to some of the comments that are used to render documentation by drh ยท 13 years ago
- 99b3908 Update the command-line shell to give an exit code of 0 when the ".quit" by drh ยท 13 years ago
- d16d0bc Omit sqlite3_compileoption_used() entries that are not explicitly stated by drh ยท 13 years ago
- 50287f5 Remove the unused SQLITE_CURDIR macro. by drh ยท 13 years ago
- 0f23401 Disable memory-mapped I/O when the codec is enabled. by drh ยท 13 years ago
- 5824e05 Expand scope of the SQLITE_MAX_MMAP_SIZE define for the Win32 VFS. by mistachkin ยท 13 years ago
- 9b4c59f Refactoring the mmap interface. The controlling pragma is now "mmap_size" by drh ยท 13 years ago
- a1710cc Fix a formatting typo in a comment. No changes to code. by drh ยท 13 years ago
- f9b70c4 Only consider AS names from the result set as candidates for resolving by drh ยท 13 years ago
- a3a5bd9 Only consider AS names from the result set as candidates for resolving by drh ยท 13 years ago tkt-2500cdb9be
- 4b2ac35 Add a test case for detaching a database referenced by an fts4aux table created in the temp schema. by dan ยท 13 years ago
- a8f6038 Change the fts4aux virtual table module so that fts4aux tables created in the temp database may report on fts3/fts4 tables in any attached database. by dan ยท 13 years ago
- 739ee7f In mptester: improve the way that child processes are dispatched. Pass by drh ยท 13 years ago
- fdd72c9 For the multi-process tester on Win32, make use of the GetCurrentProcessId API. by mistachkin ยท 13 years ago
- e82c6c3 Fix the xCheckReservedLock() method on the windows VFS so that it cannot by drh ยท 13 years ago
- ef8e986 Fix pragma code generation so that it always outputs an OP_Trace opcode so by drh ยท 13 years ago
- e3be8c8 Show the process-id on log messages from mptester. by drh ยท 13 years ago
- fbc7e88 Have the UNIX VFS issue warnings via sqlite3_log() if a database file is by drh ยท 13 years ago
- 08d4189 Enhance multi-process tester integration with the Win32 API. by mistachkin ยท 13 years ago
- d040e76 Add new primary error codes SQLITE_NOTICE and SQLITE_WARNING for use with by drh ยท 13 years ago
- 56282a5 Add the sqlite3_strglob() interface. by drh ยท 13 years ago
- 4c5298f Use symbolic names for tasks in mptester. by drh ยท 13 years ago
- 21c9b6b Fix typo in name of mptest executable files in clean targets. by mistachkin ยท 13 years ago
- 65eb647 Correct test numbering on several rtree tests. by mistachkin ยท 13 years ago
- 7de96f7 Limit integrity_check output to 10 lines in mptester scripts. by drh ยท 13 years ago
- ab755ac Change the rollback journal so that it invokes sqlite3_log() make a record by drh ยท 13 years ago
- 6e0b6d5 Add extra #ifndef statements in os_unix.c and os_win.c to make sure the by drh ยท 13 years ago
- 188d488 Disable the use of memory-mapped I/O if the SQLITE_DISABLE_MMAP macro is by drh ยท 13 years ago
- f90e50f In mptester, handle startScript no-change commits using a retry rather by drh ยท 13 years ago
- 6adab7a Still more tests using mptester. Added test cases that leave rollback by drh ยท 13 years ago
- 023dd90 Adding tests to the mptester scripts. by drh ยท 13 years ago
- e5ebd22 Change mptester to avoid reporting SQLITE_BUSY errors if the busy handler by drh ยท 13 years ago
- bcb8a86 Handle the case in os_unix.c where SQLITE_FCNTL_MMAP_LIMIT requests that the mmap limit be set to a value smaller than the current mapping. by dan ยท 13 years ago
- 554052c Merge the multi-process tester into trunk. by drh ยท 13 years ago
- bc94dbb Add the "mptester" target to the makefiles. Make mptester run with by drh ยท 13 years ago mptest
- 841810c Fix harmless compiler warnings in mptest.c. by drh ยท 13 years ago
- 1bf44c7 Add the vfsname() and eval() SQL functions to mptest.c. by drh ยท 13 years ago
- 7dfe8e2 Add --if, --else, --endif processing to mptest.c. by drh ยท 13 years ago
- fbfe388 Fix an incorrect type cast in an assignment in vdbe.c. by dan ยท 13 years ago
- e348fc7 Fix the --source command so that its argument is relative to the script. by drh ยท 13 years ago
- 8f35eb0 Merge trunk changes into the mptest branch. The mptest needs the by drh ยท 13 years ago
- 6062531 Increase the default SQLITE_MAX_SCHEMA_RETRY to 50. Make sure that macro by drh ยท 13 years ago
- 1790bb3 Add SQLITE_CONFIG_LOG error logging to the mptest program. by drh ยท 13 years ago
- 896be7d Get the build of mptest working on mac. by drh ยท 13 years ago
- f012ae0 Get the mptest program running on windows. by drh ยท 13 years ago
- 3f5bc38 Many improvements to the mptest program. Added a simple test script. by drh ยท 13 years ago
- abd6d84 Add tests to "permutations.test coverage-pager" to cover uncovered branches. by dan ยท 13 years ago
- 27338e6 Add a prototype TH3-script-style test harness that starts multiple processes by drh ยท 13 years ago
- d7a558a Improve the code coverage of "permutations.test coverage-pager". by dan ยท 13 years ago
- ced9813 Add further multi-client tests to mmap1.test. by dan ยท 13 years ago
- 75f2d54 Disable memory-mapped I/O for the win32lock.test module by drh ยท 13 years ago
- 67f7c78 Updates to the file-control documentation. No changes to code. by drh ยท 13 years ago
- 6109e50 Increase the version number to 3.7.17. by drh ยท 13 years ago
- a478b3f Try to use mmap() to speed access to the database file on windows, linux, by drh ยท 13 years ago
- b0a8ea0 Release resources prior to bailing out of the btreeCreateTable() routine by drh ยท 13 years ago experimental-mmap
- 370c9f4 Remove an unreachable branch in the direct blob I/O logic of btree.c. by drh ยท 13 years ago
- 716d6d2 Fix a bug in the detection of iOS when setting the default mmap_limit. by drh ยท 13 years ago
- 34f7490 Change the mmap_limit pragma to report the new limit, or to report the by drh ยท 13 years ago
- 6c96946 Remove the restriction on using xFetch to load the root pages of tables and indexes. It appears to have been based on a misconception. by dan ยท 13 years ago
- f7679ad When moving a page to make way for the root page of a new table or index in an auto-vacuum database, save the positions of any cursors that may be holding xFetch references to the page being moved. by dan ยท 13 years ago
- 227a1c4 In btree.c, save the positions of other cursors open on the same table when writing via an incremental blob handle. Otherwise, they may be left holding an out-of-date xFetch page reference. by dan ยท 13 years ago
- 2b8246e Initialize the mmap_limit of temporary files to the configured mmap_limit. by drh ยท 13 years ago
- 7e36962 Make use of xFetch, if it is available when doing a VACUUM or a backup. by drh ยท 13 years ago
- 7d9f394 Add the -mmap option to the command-line shell, for setting the default by drh ยท 13 years ago