- 97bc087 Further tweaks to malloc paths. by dan ยท 13 years ago calloc
- 32e28c8 Remove another branch from the DbMalloc() paths. by dan ยท 13 years ago
- a785a59 Reorganize code to remove a few of the branches introduced into the critical sqlite3DbMallocXXX() path by the previous commit. by dan ยท 13 years ago
- cb2b9c8 Enhance the custom memory allocation interface to allow the user to specify a calloc() function. by dan ยท 13 years ago
- 5373b76 Ensure that there is always at least one aReadMark slot usable by an unprivileged reader while a checkpoint is running. Also, if one or more transactions are recovered from a log file, initialize one of the aReadMark slots to contain mxFrame as part of the recovery process. by dan ยท 13 years ago
- 610b8d8 Amplification of a comment in wal.c. Change the aReadMark[] processing so by drh ยท 13 years ago
- 206d0b6 Merge the spellfix1 changes for supporting matchlen into trunk. by drh ยท 13 years ago
- 13a2bed Fix compiler warnings about unused code in spellfix. Fix the editDist3Core() by drh ยท 13 years ago spellfix-matchlen
- b4a553e Fix a bug in the phonetic-hash routine in spellfix1: Even if the first character of a word is deemed to be "silent", do not apply the special handling intended for the first character of each word to the second. by dan ยท 13 years ago
- 5ad17e5 Merge trunk changes. by dan ยท 13 years ago
- 5885e76 If a specific database is nominated as part of a "PRAGMA integrity_check" or "PRAGMA quick_check" command, search for problems in the nominated database only. i.e. "PRAGMA main.quick_check" now only scans the main database, not all attached databases as before. by dan ยท 13 years ago
- 8512752 Add the "matchlen" column to the spellfix1 virtual table. by dan ยท 13 years ago
- 2deb165 Update test_spellfix.c with latest changes. by dan ยท 13 years ago
- bd58d5f Setup the necessary library paths for cross-compilation with MSVC. by mistachkin ยท 13 years ago
- 228aeff Simplify usage of some linker options in the MSVC makefile. by mistachkin ยท 13 years ago
- e37f99c Make use of the predefined nmake command macro CC when possible instead of the literal string 'cl.exe'. Improve support for cross-compilation. Eliminate problematic use of double quotes in macro preprocessing expressions. by mistachkin ยท 13 years ago
- 2f3de32 Another changes to the shell in support of SQLITE_OMIT_AUTOINIT. by drh ยท 13 years ago
- bbb0be8 Update the shell so that it works with SQLITE_OMIT_FLOATING_POINT and by drh ยท 13 years ago
- 5afbd60 Remove code that was incorrectly changing SQLITE_MISUSE errors into SQLITE_OK by drh ยท 13 years ago
- ed68801 Add the sqlite3_close_v2() interface (from the deferred-close branch) that by drh ยท 13 years ago
- 5675202 Merge changes to trunk that ensure that floating point values are exactly by drh ยท 13 years ago
- 20b1ff0 Fix spelling typo. by mistachkin ยท 13 years ago
- f1c6bc5 Remove more references to OS/2. by mistachkin ยท 13 years ago
- c722a2c Disable the atof1.test module when compiling on MSVC. by drh ยท 13 years ago floating-point-conversions
- 42c96dc Increase the version number to 3.7.14 and rerun autoconf by drh ยท 13 years ago
- d1b0afc Fix the SQLITE_ZERO_MALLOC compile-time option so that it works on windows. by drh ยท 13 years ago
- fe7b2bc Merge several compiler compatibility fixes to trunk. by mistachkin ยท 13 years ago
- 83905c9 Remove support for OS/2 from the source tree. by drh ยท 13 years ago
- 8d967a9 When linking to the MSVC runtime library, use the debug library when necessary. Also, link dynamically to the MSVC runtime library when required (e.g. WinRT) or requested via the USE_CRT_DLL build macro. by mistachkin ยท 13 years ago
- 3aaa4cd Add tests to check that the "unicode61" and "icu" tokenizers both identify white-space codepoints outside the ASCII range. by dan ยท 13 years ago
- 2b434a7 Move variable declaration to fix compilation with MSVC. by mistachkin ยท 13 years ago
- 4aaf155 Fix an incorrect testcase for the round() function. All tests are passing by drh ยท 13 years ago
- 4ef9413 Round-trip conversions of real->text->real are now lossless on x64 with GCC. by drh ยท 13 years ago
- 72b3fbc Improved accuracy on text-to-real and real-to-text conversions. Most by drh ยท 13 years ago
- 89f1508 Improved rounding accuracy on test-to-float conversions. by drh ยท 13 years ago
- 2ae26b7 Fix a problem with identifying white-space characters outside of the ascii range in the ICU tokenizer. by dan ยท 13 years ago
- 9721c21 Allow the SQLITE_API macro to apply to the sqlite3_win32_sleep function. by mistachkin ยท 13 years ago compiler-compat
- c8bde37 Fix a few compilation issues that can occur with certain compilers (e.g. GCC 2.95.3, MSVC). by mistachkin ยท 13 years ago
- 8ba0d1c In Lemon, when comparing the output to the *.h file to see if it has changed, by drh ยท 13 years ago
- 4104337 Fix compiler warning. by mistachkin ยท 14 years ago deferred-close
- 46daba8 Version 3.7.13 by drh ยท 14 years ago version-3.7.13
- 4b8213d Add missing targets for fts3_unicode.lo and fts3_unicode2.lo to Makefile.in. by dan ยท 14 years ago
- 1c30deb Fix an obscure memory leak in FTS3 that can come about when two memory by drh ยท 14 years ago
- b6a69a6 Fix a problem in vtab1.test causing it to fail when run with any permutation that executes SQL within the tcl "sqlite3" command. by dan ยท 14 years ago
- 155812d Documentation and evidence mark updates. Remove a redundant assert(). by drh ยท 14 years ago
- 0b8dcfa Fix a problem preventing a shared in-memory database from being attached to a read-only connection. by dan ยท 14 years ago
- 25cdf46 Add the "tokenchars=" and "separators=" options, for customizing the set of characters considered to be token separators, to the unicode61 tokenizer. by dan ยท 14 years ago
- a879342 Fix a malloc/free mismatch in pager.c (sqlite3_free() called on a buffer allocated by sqlite3DbMalloc()). by dan ยท 14 years ago
- 4bd6952 Provide an (undocumented) compile-time option to disable the page cache by drh ยท 14 years ago
- 5e0c493 Fix harmless Clang warnings. by drh ยท 14 years ago
- 617235b Fix an #if that is applicable to WinRT, even thought it is currently disabled by another #if. by mistachkin ยท 14 years ago
- cc71645 Merge the changes need to compile on WinRT into trunk. by drh ยท 14 years ago
- 2c897e3 Disable FTS unicode61 by default. It is enabled by specifying compile time option SQLITE_ENABLE_FTS4_UNICODE61. by dan ยท 14 years ago
- 754d3ad Have the FTS unicode61 strip out diacritics when tokenizing text. This can be disabled by specifying the tokenizer option "remove_diacritics=0". by dan ยท 14 years ago
- f053054 Avoid resetting the shared-cache schema when on of the connections using by drh ยท 14 years ago
- a19b896 Make sure the Index.azColl pointers do not point to connection-specific memory. by drh ยท 14 years ago shared-schema
- bae591a Merge the latest trunk changes into shared-schema branch. Also fix a C99-ism by drh ยท 14 years ago
- 98c78ea Add sqlite3_quota_ferror() and sqlite3_quota_file_available() interfaces to by drh ยท 14 years ago
- d3babb5 Correct docs regarding use of malloc and free by the Windows VFS layer. No changes to code. by mistachkin ยท 14 years ago
- 401e915 When not compiling for WinRT, skip using a couple Win32 APIs unavailable when compiling with MinGW. by mistachkin ยท 14 years ago
- 167cd6a Revert sqlite3_close() to legacy behavior. Create a new sqlite3_close_v2() by drh ยท 14 years ago
- 4245c40 The sqlite3_close() interface returns SQLITE_OK even if there are outstanding by drh ยท 14 years ago
- 1e6eea9 Update several APIs to enable compilation with newer revisions of WinRT. by mistachkin ยท 14 years ago
- ed46682 Avoid calling fchown() if the process is not running as root. by drh ยท 14 years ago
- 1b28b89 Link the NDEBUG macro to SQLITE_DEBUG so that when SQLITE_DEBUG is defined, by drh ยท 14 years ago
- 666a1d8 Fix a typo (a repeated "or") in the documentation. No changes to code. by drh ยท 14 years ago
- d3d8c04 Changes some NDEBUG macros to SQLITE_DEBUG in os_unix.c. The is a notational by drh ยท 14 years ago
- 51fec64 In the RTree module, make sure all double-to-float conversions round in a by drh ยท 14 years ago
- 0e3037a Refactor the float-to-double rounding routines so that they compile without by drh ยท 14 years ago rtree-32bit-rounding
- 391d4ba Fix the MSVC makefile so that it works with the unicode61 tokenizer. by drh ยท 14 years ago
- c6bff38 Simplification to the coordinate rounding logic in RTree. by drh ยท 14 years ago
- 7923863 When converting 64-bit floating point coordinates to 32-bit in RTree, take by drh ยท 14 years ago
- 9cb7200 Updates regarding URI query parameters and shared cache in the documentation by drh ยท 14 years ago
- d97f3d7 Fix Makefile.in so that it works with the new unicode tokenizer of FTS3/4. by drh ยท 14 years ago
- 9c67b2a Add the mode=memory option to URI filenames, which when present forces the by drh ยท 14 years ago
- a9cfaba Omit the fts3 unicode character class routines from the build if fts3/4 by drh ยท 14 years ago
- 2bfcce4 Merge into trunk the changes that permit :memory: databases to use shared cache. by drh ยท 14 years ago
- d4e0bb0 Have user interfaces report out the filename of in-memory databases as an by drh ยท 14 years ago shared-cache-memdb
- 4ab9d25 Only allow :memory: databases to share cache if there are created using a by drh ยท 14 years ago
- 092a1eb Merge fts4-unicode branch with trunk. by dan ยท 14 years ago
- 7946c53 If SQLITE_DISABLE_FTS3_UNICODE is defined, do not build the "unicode61" tokenizer. by dan ยท 14 years ago fts4-unicode
- afc8b7f Enable the use of shared cache for an in-memory database, so that separate by drh ยท 14 years ago
- 501c74d Change the format of the tables used by sqlite3FtsUnicodeTolower() to make them a little smaller. by dan ยท 14 years ago
- 7a79673 Add coverage tests for fts3_unicode.c. by dan ยท 14 years ago
- cf9f6f1 Add fault-injection tests that use the unicode61 tokenizer. Fix a problem revealed by the same. by dan ยท 14 years ago
- ab322bd Change the name of the "unicode" tokenizer to "unicode61" to emphasize that the case folding and separator-character identification routines are based on unicode version 6.1. by dan ยท 14 years ago
- 1c7016c Add special fast paths to sqlite3FtsUnicodeTolower() and Isalnum() for codepoints in the ASCII range. by dan ยท 14 years ago
- 80ed5a5 Fix comments in generated file fts3_unicode2.c. by dan ยท 14 years ago
- 3d403c7 Add an experimental tokenizer to fts4 - "unicode". This tokenizer works in the same way except that it understands unicode "simple case folding" and recognizes all characters not classified as "Letters" or "Numbers" by unicode as token separators. by dan ยท 14 years ago
- 86ab48f Use the new test suite helper procedure 'get_pwd' to query the current directory from tests. by mistachkin ยท 14 years ago
- ba67e31 Merge the 3.7.12.1 trunk changes into the WinRT branch. by drh ยท 14 years ago
- 3773b29 Version 3.7.12.1 by drh ยท 14 years ago version-3.7.12.1
- b24c61a Increase the version number to 3.7.12.1. Minor changes to test scripts. by drh ยท 14 years ago
- 5677e10 Merge the nested aggregate query fix (ticket [c2ad16f997ee9c8ed]) unto trunk. by drh ยท 14 years ago
- bbabe19 Mark and always-true conditional as such. Add the fuzz-oss1.test test module. by drh ยท 14 years ago
- 3a8c4be Candidate fix for the nested aggregate query problem of ticket by drh ยท 14 years ago
- a51009b Convert the NameContext object from using u8 booleans to using individual by drh ยท 14 years ago
- 3608f17 Make sure lookaside memory allocations are unusable after they are freed. by drh ยท 14 years ago
- 94e858b Move some #defines earlier in the file for test_quota.c in order to avoid by drh ยท 14 years ago
- 84ee0af Allow the sqlite3ExplainBegin function to be compiled by MSVC. by mistachkin ยท 14 years ago