- 6e1a037 Allow FTS tokenizers to choose whether or not to consider the "*" character part of tokens or not. This restores the pre-[e21bf7a2ad] behaviour. Also fix a problem causing FTS to interpret tokens beginning with "*" characters as EOF. by dan ยท 11 years ago
- a8950d5 Fix a memory leak associated with the FTS4 matchinfo() function. by drh ยท 11 years ago
- b8e8d50 Fix a harmless compiler warning inside an assert() in FTS4. by drh ยท 11 years ago
- 2494893 Add the "showauth" extension in ext/misc. by drh ยท 11 years ago
- c891c6c Clean up some #includes in the extension API implementation. by drh ยท 11 years ago user-auth
- 7883ecf Enhance the sqlite3_user_add() interface to initialize the user by drh ยท 11 years ago
- 9d5b0df Get the sqlite3_user_delete() interface working. by drh ยท 11 years ago
- 570f187 Fix the sqlite3_user_change() interface so that it does allow a by drh ยท 11 years ago
- 32c6a48 Add support for the extra parameter on the sqlite3_set_authorizer() callback by drh ยท 11 years ago
- d39c40f Reorder parameters on the sqlite3_user_*() interfaces for consistency. by drh ยท 11 years ago
- 09e6054 Complete the implementation of the various APIs. Fix several problems. by drh ยท 11 years ago
- f442e33 Add the ".user" shell command and implement the sqlite3_user_add() by drh ยท 11 years ago
- e933b83 Further ideas on user authentication. Not yet working code. by drh ยท 11 years ago
- d453097 Non-working preliminary implementation attempts on user authentication. by drh ยท 11 years ago
- 5ab5670 Enhance the spellfix extension with the ability to specify a rowid when by drh ยท 11 years ago
- b6b4b79 Fix a faulty assert() statement. Add comments to clarify the behavior of by drh ยท 11 years ago
- 490fe86 Fix harmless compiler warnings. by drh ยท 11 years ago
- 858b638 A couple more harmless compiler warnings eliminated. by drh ยท 11 years ago
- e8f2c9d Fix two more harmless compiler warnings. Make sure the fts3_unicode2.c file by drh ยท 11 years ago
- 57ff60b Have calls to the xFilter() method of rtree virtual tables ensure that cursor is initialized before proceeding. Fix for [d2889096e7bdeac]. by dan ยท 11 years ago
- f5d87f7 Fix the index name for the shadow tables in the spellfix1 extension so that by drh ยท 11 years ago
- 86ac612 Fix some harmess compiler warnings in the FTS3 Unicode module. by mistachkin ยท 11 years ago toolWarnings
- 166c373 Fix harmless compiler warnings in the fts3view utility program that can occur with MSVC. by mistachkin ยท 11 years ago
- 42d3d37 Fix a division-by-zero error in the fts3view utility program. Add the by drh ยท 11 years ago
- 2eaf03d Change fts3/4 so that the "unicode61" is included in builds by default. It may now be excluded by defining SQLITE_DISABLE_FTS3_UNICODE. by dan ยท 11 years ago
- 9740726 A different approach to the autoindex problem that deletes query-planner code by drh ยท 11 years ago
- 6b7ff74 Allow an automatic index on a WHERE constraint where the RHS is does not by drh ยท 11 years ago
- a2412c1 Fix the extension01.test script so that it works on windows. Fix a by drh ยท 12 years ago
- 40e75cb Add the fileio.c loadable extension, that implements readfile() and writefile() by drh ยท 12 years ago
- 0b93058 Add an extension that implements compress() and uncompress() SQL functions. by drh ยท 12 years ago
- 33b7bcb Fix a problem that was causing the FTS4 integrity-check command to fail if the table had one or more "notindexed" columns. by dan ยท 12 years ago
- 3c559a8 Fix harmless compiler warnings. by drh ยท 12 years ago
- b7231a8 Fix a harmless compiler warning in the FTS4 logic. by drh ยท 12 years ago
- cde81d5 Fix a problem in FTS4 where columns with names that are prefixes of any notindexed column were also being (incorrectly) marked as not indexed. For example in "CREATE ... t1(abc, bc, abcd, notindexed=abcd)", both abc and abcd were being treated as notindexed. by dan ยท 12 years ago
- 02c1e26 Fix harmless compiler warnings. by mistachkin ยท 12 years ago ftsWarnings
- a7b9e7d Fix a bug causing an incorrect segment size value to be stored if both an old and new FTS version performed work on the same incremental merge operation. by dan ยท 12 years ago
- 157c957 Fix a problem with the handling of delete markers by automerge on large databases. by dan ยท 12 years ago
- 5b34f15 Do not search for promotable segments following an FTS 'optimize' operation or creation of a new segment on the oldest existing level. by dan ยท 12 years ago
- a0b7ca9 Fix a problem to do with loading the value of the FTS automerge setting from the database. by dan ยท 12 years ago
- 9e83e46 Fix various problems to do with segment promotion. Add test file fts4growth2.test, containing tests to check that the FTS index does not grow indefinitely as the table is updated. by dan ยท 12 years ago
- c0caea2 Fix a problem preventing delete markers from ever being removed from the FTS index. by dan ยท 12 years ago
- 6bb9889 Experimental code to prevent FTS indexes from growing indefinitely as the table is updated. by dan ยท 12 years ago
- d2d8ca6 Fix the way parenthesis in MATCH expressions are handled by FTS if the tokenizer considers them to be token characters. by dan ยท 12 years ago
- 65e6b0d Add the sqlite3_rtree_query_callback() API to the RTree virtual table. by drh ยท 12 years ago
- d88e521 Fix an obscure bug causing sqlite3_close() to fail if there are virtual tables on the disconnect list when it is called. by dan ยท 12 years ago
- 82d25da Changes to FTS to ensure that it does not access the database from within the xConnect method. by dan ยท 12 years ago
- 87af14a Prevent the rtree module from reading sqlite_stat1 data from the wrong database. by dan ยท 12 years ago
- 3afca7d Add a test to see what happens if an rtree constructor encounters an SQLITE_BUSY error. No changes to code. by dan ยท 12 years ago
- dc90d3d Always include the ctype.h header in the spellfix.c extension. by drh ยท 12 years ago
- 0211d8b Change the spellfix1 virtual table to deterministically names its shadow tables. by drh ยท 12 years ago
- 693e671 Fixes for various clang warnings. by drh ยท 12 years ago
- a8a0617 Update the spellfix virtual table to optimize queries of the form "SELECT ... FROM tbl WHERE rowid=?". by dan ยท 12 years ago
- 2e08486 Add the usual "fts3" prefix to new static method setEstimatedRows() in fts3.c. This fixes a problem when compiling the amalgamation, as the r-tree module also contains a static method named setEstimatedRows. by dan ยท 12 years ago
- 6901439 Instead of having the planner ignore plans with unusable MATCH constraints, have FTS assign extremely high costs to such plans in order to discourage the planner from using them. by dan ยท 12 years ago avoid-unusable-match
- c73d0d9 Fix harmless compiler warnings in FTS4. This involved corrupting by drh ยท 12 years ago
- 707f1c5 Fix a harmless MSVC compiler warning. by drh ยท 12 years ago
- 2bea7cd Fix harmless compiler warnings from clang scan-build. by drh ยท 12 years ago
- 3aa4be3 Fix harmless compiler warning. by mistachkin ยท 12 years ago
- 85963f5 When possible, have FTS use 32-bit operations to read varints from the database. by dan ยท 12 years ago
- ff4b23b Fix for [4065ac8595]: Do not order CROSS or LEFT joins, even if the right-hand-side is a virtual table. by dan ยท 12 years ago
- f8396b2 Fix an error message in the spellfix extension so that it conforms to the by drh ยท 12 years ago
- 14ec33f Fix typos in compile and run-time tests of the sqlite library version number in rtree.c. by dan ยท 12 years ago
- a9f5815 Add a way for virtual tables to return the expected number of rows for a scan (not just the overall cost) to SQLite. Have the rtree module make use of this. by dan ยท 12 years ago
- d6dd5de Fix a bug preventing FTS from correctly processing bracket tokens that are immediately preceded by characters that are neither whitespace or token characters. by dan ยท 12 years ago
- 0568427 Improved header comment with better instructions on the vfslog.c extension. by drh ยท 12 years ago
- 8f8b231 Add the SQLITE_FCNTL_TRACE file control and generate it for OP_Trace by drh ยท 12 years ago
- 06d6efb Further enhance the vfslog extension to record the number of freelist pages by drh ยท 12 years ago
- 2eebbf6 In the vfslog extension for FILECONTROL records, show the pragma name for by drh ยท 12 years ago
- a4bbc8b Add the "languageid" hidden column to fts4aux. by dan ยท 12 years ago
- bc863b5 Fix harmless macro redefinition warnings in the totype extension. by mistachkin ยท 12 years ago
- 0593516 Fix harmless compiler warning in the totype extension. Include all standard whitespace characters in totypeIsspace. Minor adjustments to style and comments. by mistachkin ยท 12 years ago
- 5f8cdac Move the tointeger() and toreal() functions out of core and make them into by drh ยท 12 years ago
- 362d216 Fix a crash in FTS incremental phrase processing that can occur if the second or subsequent token is much more common in the dataset than the first. by dan ยท 12 years ago
- b084582 Fix harmless compiler warning. by mistachkin ยท 12 years ago
- 4f99189 Fix various harmless compiler warnings. Change the "warnings.sh" script to by drh ยท 12 years ago
- a0cbd3f Enhancements to the vfslog.c module to show all change-counter changes and by drh ยท 12 years ago
- 919e3b3 Another fix to the hash signature algorithm in vfslog.c. by drh ยท 12 years ago
- 7cd84ff Fix the hash signature algorithm in vfslog.c. Add a utility program to by drh ยท 12 years ago
- 30e2f0a Add ext/misc/vfslog.c, a VFS shim for unix that keeps a log of method calls made by SQLite. by dan ยท 12 years ago
- 86f72f0 Fix compilation issue with MSVC. by mistachkin ยท 12 years ago
- 9211f8a Allow FTS4 multi-token phrases to use a combination of in-memory and incrementally loaded doclists. This allows phrases to (partially) benefit from incremental doclists without disabling the deferred token optimization. by dan ยท 12 years ago
- eb26672 Add a test to check that the new multi-token phrase optimization is actually helping. by dan ยท 12 years ago
- ff574f4 Allow multi-token phrases to load doclists from the database incrementally. This allows queries that feature such phrases to benefit from the "docid<?" optimization. by dan ยท 12 years ago
- 73632e3 Merge trunk changes with this branch. by dan ยท 12 years ago
- 1f03e60 Fix a performance problem in the FTS4 auxiliary functions triggered by an OR clause in the full-text query. by dan ยท 12 years ago
- 92054fe Fix memory leaks in the amatch extension. Add a few simple test cases. by drh ยท 12 years ago
- 1938438 Have fts4 full-text queries consider "docid<?" and similar constraints. by dan ยท 12 years ago
- 915fe4d Fix typo in comment. No changes to code. by mistachkin ยท 12 years ago
- f427472 In the nextchar.c extension, allow the second argument to the next_char() by drh ยท 12 years ago
- 2505a5f Fix an FTS4 problem introduced by [361084e1eb]. by dan ยท 12 years ago
- 2c18788 Initialize a variable in fts3_write.c on the grounds that the argument required to show that it does not require initialization with is complicated. Add an assert() to where.c to silence a clang scan-build warning. by dan ยท 12 years ago
- 2907030 Add some extra assert() statements to silence a few clang warnings. by dan ยท 12 years ago
- f3d2aae For the vtshim module, always zero out the xChildDestroy function pointer after calling it. by mistachkin ยท 12 years ago
- b8c0683 Documentation changes to warn that sqlite3_set_auxdata() might call the by drh ยท 12 years ago
- 47af6e7 Fix copy/paste errors in comments in the transitive_closure virtual table. by drh ยท 12 years ago
- 580d7dc Adjust the costs in the xBestIndex function of the spellfix1 virtual table by drh ยท 12 years ago
- 1f10c28 Modify several extensions to use the new exported function naming. by drh ยท 12 years ago
- d4b473b Add an optional 5th parameter to the next_char() function that is the by drh ยท 12 years ago
- ed20073 Make a couple of implicit casts explicit to fix compiler warnings. by dan ยท 12 years ago
- 049d487 Modify several extensions to use the new exported function naming. Fix some shared library compilation issues. by mistachkin ยท 12 years ago extRefactor