- dc97a8c Refactored compile time option diagnostic support to use strings identifiers instead of bitmask. by shaneh ยท 16 years ago compile_opts
- 440ac39 Fix a segfault that can occur if a malloc fails in ATTACH in shared-cache mode. by dan ยท 16 years ago
- ca07b9d Removed checking of some compile options from the sqlite3_compileopts() API. by shaneh ยท 16 years ago
- bdea6d1 Test new api to report which options (defines) were used to compile SQLite. by shaneh ยท 16 years ago
- 127f9d7 Add the ".log" command to the shell. This shows that some errors are logged by drh ยท 16 years ago
- 5bd1d05 Remove the ".genfkey" command from the shell. We've had foreign-key support by drh ยท 16 years ago
- 4ec84f3 Fix an assertion-fault/segfault problem that comes up when trying to by drh ยท 16 years ago
- a0f3509 Merge in the massive clean-up and ANSI-fication of Lemon carried out by drh ยท 16 years ago
- a756466 Log all error messages if logging is enabled. by drh ยท 16 years ago
- 195475d Changes to pragma integrity_check to check rowid order. Tests of same in corruptE.test. by shaneh ยท 16 years ago
- 3f28070 Add a new, experimental logging interface designed to aid in debugging of by drh ยท 16 years ago
- da730f6 Allow statements like "REPLACE INTO tbl(rowid) VALUES(...)" to run without a statement journal as long as there are no triggers, foreign keys or indexes. by dan ยท 16 years ago
- 866bf1e Repore error if the grammar has multiple %type lines for the same nonterminal. by icculus ยท 16 years ago
- d0d97b0 Fixed % formatting in some printf-style strings. by icculus ยท 16 years ago
- 10163b7 Corrected error message (cut-and-paste bug). by icculus ยท 16 years ago
- ad9f9f6 Consistent use of #ifdef for SQLITE_HAS_CODEC to avoid confusion. by shaneh ยท 16 years ago
- a319119 Removed unused variables. by icculus ยท 16 years ago
- 147e176 Avoid using the internal printf routine for round(x,y) in the common case where y==0. by shaneh ยท 16 years ago
- 35c1a79 More rounding tests. by shaneh ยท 16 years ago
- 030ea31 Remove duplicated assignment in realloc. by shaneh ยท 16 years ago
- 4a0b43c Added additional rounding tests. by shaneh ยท 16 years ago
- 8e15802 Removed %expect directive, on drh's advice. by icculus ยท 16 years ago
- 15a2cec Patched to compile. Accidentally removed va_list declaration. by icculus ยท 16 years ago
- 2b0ef47 Change a C++ style comment in os_unix.c to use normal C style commenting. by dan ยท 16 years ago
- 5dcb393 Fix for [e9a9fde1f4]. When opening an existing rtree, determine the node size by inspecting the root node of the r-tree structure (instead of assuming it is a function of the page-size). by dan ยท 16 years ago
- 9a6ffc8 Fix the ALTER TABLE RENAME command so that it converts FOREIGN KEY constraints by drh ยท 16 years ago
- 622d288 When creating a trigger on a main database table when there is a TEMP table by drh ยท 16 years ago
- a8c62df Fix a compiler warning in shell.c. Updates to comments in trigger.c. by drh ยท 16 years ago
- 2d8d7ce Fix a typo in the documentation for the OP_OpenPseudo opcode. by drh ยท 16 years ago
- 1c11f74 Removed the 80-char line formatting for ErrorMsg(), on dhr's suggestion. by icculus ยท 16 years ago
- 9e44cf1 Make Lemon able to compile as C++ code. by icculus ยท 16 years ago
- d191282 Added option to not clip error output. by icculus ยท 16 years ago
- f5ad824 Delete output files if this is a failed run. by icculus ยท 16 years ago
- 42585cf Added %expect directive, to consider a certain number of conflicts "correct." by icculus ยท 16 years ago
- 3e143bd Added -T option, to specify a template filename on the command line. by icculus ยท 16 years ago
- 1f4222f Merged tracing and initialization changes from mutex_unix.c. by shaneh ยท 16 years ago
- af034ed Enhancements to the secure_delete pragma to make it easier to use. by drh ยท 16 years ago
- 5b47efa All the secure-delete setting to be changed at run-time using a pragma. by drh ยท 16 years ago
- 56f2996 Fix a segfault in fts3 that may occur if the snippet, offsets or matchinfo functions are used in a query that does not contain a MATCH clause. by dan ยท 16 years ago
- 309e655 Make sure file descriptors are closed before unlinking in VxWorks. by drh ยท 16 years ago
- 6885de3 Avoid truncating non-in-memory sub-journals when releasing a savepoint for a small performance improvement. by shaneh ยท 16 years ago
- 6658cd9 Remove the use of 64-bit math in the offset computations of by drh ยท 16 years ago
- a963896 Fix a performance glitch that appears for large transactions. by drh ยท 16 years ago
- b4a1fed Add a new full-text search variant that tracks the total number of documents by drh ยท 16 years ago
- 0ae0bfd Fix a C++-ism that snuck into sqlite3_finalize(). by drh ยท 16 years ago
- 7c9c986 If an OOM occurs while setting the page size for the TEMP database, be sure by drh ยท 16 years ago
- 959dda6 Tweaks for consistency to the SEE and CEROD API declarations in sqlite3.h. by shaneh ยท 16 years ago
- 10a76c9 Make the TEMP file tables use the page size set for the main database. by drh ยท 16 years ago
- d3789b9 Fix two similar problems in fts3 that meant that an OOM error could cause a memory leak. by dan ยท 16 years ago
- 5cb7434 Fix a segfault that can occur when the LHS of a LIKE operator has an by drh ยท 16 years ago
- 4b5db5a Redesign the string to numeric value caster so that it is more likely to by drh ยท 16 years ago
- 14d4cc4 Fix a problem with handling OOM errors in fts3. by dan ยท 16 years ago
- 7ed97b9 Move the Apple OS-X VFS changes into the trunk. by drh ยท 16 years ago
- 87f5c5f Manually copy over the rebustness fixes from the apple-osx branch. by drh ยท 16 years ago
- b7977c5 Fix a problem with the CLI where not all SQL commands were being echoed. by shaneh ยท 16 years ago
- 1d0f43f Fix test numbering in fts3snippet.test. by dan ยท 16 years ago
- 3996a06 Add coverage tests for fts3_snippet.c. Also fixes related to the same. by dan ยท 16 years ago
- 0153c35 Add a test to e_fts3.test for the matchinfo example in fts3.html. by dan ยท 16 years ago
- ceafa47 Fix some matchinfo related test problems in fts3rnd.test. by dan ยท 16 years ago
- a2460e0 Comment cleanup in sqliteInt.h. by drh ยท 16 years ago
- 85c8f29 Make the sqlite3IsNaN() function a macro that evaluates to FALSE when by drh ยท 16 years ago
- 90038f8 When SQLITE_OMIT_FLOATING_POINT is defined, the floating-point formats in by drh ยท 16 years ago
- c5a7b51 When SQLITE_OMIT_FLOATING_POINT is defined, make sure the result of a by drh ยท 16 years ago
- 52d1452 Make the doubleToInt64() routine a pass-through when using OMIT_FLOATING_POINT. by drh ยท 16 years ago
- 33d58bc Add tests to backup.test to verify that SQLite behaves as expected when the source database is modified mid-backup. by dan ยท 16 years ago
- 44dbca8 Comment out unused code when SQLITE_OMIT_FLOATING_POINT is selected. by drh ยท 16 years ago
- 7ec5ea9 Make the sqlite3_result_double() interface work the same as by drh ยท 16 years ago
- 6a9c64b Make sure internal queries are well ordered, even when the by drh ยท 16 years ago
- 2b1e690 Fix the implementation of CURRENT_TIMESTAME and CURRENT_DATE when by drh ยท 16 years ago
- f596da5 Update comments in fts3_snippet.c. by dan ยท 16 years ago
- 13573c7 Use #ifdefs to disable unused code when SQLITE_OMIT_FLOATING_POINT is defined. by drh ยท 16 years ago
- ab2f1f9 Add a few documentation evidence comments to the built-in function by drh ยท 16 years ago
- 9a34020 Modify snippets code to run more efficiently. And to avoid a bug relating to snippets based on full-text queries that contain duplicate terms. by dan ยท 16 years ago
- 1a54b8e Fix handling of an OOM error in the fts3 offsets() function. Fix a couple of snippet related test cases in e_fts3.test. by dan ยท 16 years ago
- 819443e Update comments in fts3.c to more accurately describe the doclist format. by drh ยท 16 years ago
- 0a79052 Added option to dump pages. by shaneh ยท 16 years ago
- d61fa23 Minor tweaks to restore_jrnl.tcl utility script. by shaneh ยท 16 years ago
- ea6800c Small tool that attempts to repair a journal header. by shaneh ยท 16 years ago
- 1d9da70 Fix the expression comparison logic to take the COLLATE operator into account. by drh ยท 16 years ago
- 93a696f Changes to test code so that testfixture compiles when OMIT_SHARED_CACHE and OMIT_UTF16 are defined. by dan ยท 16 years ago
- 3174598 Fixes to problems in FTS3 snippet() function found by th3 tests. by dan ยท 16 years ago
- 8dc3e8f Another attempt at fixing the table generator in lemon. Again, this does by drh ยท 16 years ago
- c06013d Fix a segfault that can occur following an OOM in the FTS3 snippet() function by dan ยท 16 years ago
- b023b04 Change the fts3 snippet function to return (hopefully) more relevant snippets in less time. by dan ยท 16 years ago
- cf3e518 Fix an issue with lemon generating incorrect grammars. This issue does by drh ยท 16 years ago
- ac0e8fe Version 3.6.22 Release Candidate 2 by drh ยท 16 years ago
- bb6b987 Removed compiler warnings in MSVC. by shaneh ยท 16 years ago
- 3918795 Make sure new pages are zeroed even when loading a freelist page using the by drh ยท 16 years ago
- 4564ced Fix a problem in the shell tool. In some cases sqlite3_errmsg() was being called before sqlite3_finalize(), causing error messages to be more generic than they should be. by dan ยท 16 years ago
- 10f864e In the debugging memory allocator, initialize new memory allocations to by drh ยท 16 years ago
- 9061ad1 Fix a case in os_unix.c where two structures that might have uninitialized by drh ยท 16 years ago
- 6070f7e Version 3.6.22 Release Candidate 1 by drh ยท 16 years ago
- a98af17 Add experimental implementation of FTS3 functions matchinfo() and snippet() (not enabled by default). by dan ยท 16 years ago
- 855787a Fix a bug in the new sqlite3_test_control case of the previous check-in. by drh ยท 16 years ago
- 0e85773 Add a new sqlite3_test_control() verb that facilitates testing that all by drh ยท 16 years ago
- c79c761 Add evidence marks associated with autoincrement. by drh ยท 16 years ago
- 5cfa584 Add comments and an assert() to help clarify the operation of the by drh ยท 16 years ago
- f33a7a8 Minor changes to test scripts to support various SQLITE_OMIT options. by shaneh ยท 16 years ago
- 46aae3c Changes to remove warnings in MSVC build. by shaneh ยท 16 years ago
- 9ede952 Change evidence marks to track requirement number changes in the foreign-key by drh ยท 16 years ago