- 00d11d4 Add the SQLITE_STMTSTATUS_REPREPARE and SQLITE_STMTSTATUS_RUN options to by drh ยท 8 years ago stmts-vtab
- f00f530 Build the "stmts" virtual table into the amalgamation. It is active only by drh ยท 8 years ago
- 2fb960b Fix harmless compiler warnings in the CSV extension. by drh ยท 8 years ago
- 8b471e7 Faster parser stack overflow detection. by drh ยท 8 years ago
- 6559e2c Minor tweak to the SQL grammar to make the parser tables a few bytes smaller. by drh ยท 8 years ago
- 6be9536 In the lemon-generated parser, store the number of symbols on the RHS of each by drh ยท 8 years ago
- bd8fcc1 In the lemon-generated parser, automatically promote SHIFTREDUCE actions on by drh ยท 8 years ago
- 6e11b16 Simplify error handling logic in sqlite3_exec() to save about 40 bytes. by drh ยท 8 years ago
- 59a386e Minor code simplification in the ALTER TABLE logic. by drh ยท 8 years ago
- 3144df1 Avoid an unnecessary call to sqlite3XPrintf() in the code generator, for by drh ยท 8 years ago
- a5e906f Add SQLITE_DBCONFIG_ENABLE_QPSG that forces the query planner stability by drh ยท 8 years ago
- 210ec4c Fix a virtual table problem that can occur when the vtab is on the RHS of a by dan ยท 8 years ago
- af38cdb Add the -withoutnulls option to the "db eval" method in the TCL interface. by drh ยท 8 years ago
- d5fbde8 The ".import" command of the shell, and the csv virtual table extension both by drh ยท 8 years ago
- 7df7475 Make sure sqlite3VdbeSetVarmask() is never invoked when QPSG is enabled. by drh ยท 8 years ago enable-QPSG
- 169dd92 Add the SQLITE_DBCONFIG_ENABLE_QPSG option to activate the query planner by drh ยท 8 years ago
- a22dd38 Disable shell tests for the .schema command if virtual tables are not available. by drh ยท 8 years ago
- 7f2d1cd Make sure the config.h header is included by ctime.c, if that header exists. by drh ยท 8 years ago
- 54ac445 Query planner tuning: When deciding between two plans with the same cost, by drh ยท 8 years ago
- 45e7d7d Make sure enough memory is allocated for pathological quoting cases when by drh ยท 8 years ago
- 65c2a71 When generating individual loops for each ORed term of an OR scan, move any by dan ยท 8 years ago
- c456a76 When generating individual loops for each ORed term of an OR scan, move any by dan ยท 8 years ago or-optimization
- c45fdb2 Enable pragma virtual tables for the integrity_check, quick_check, and by drh ยท 8 years ago
- f383f35 Rename the azCompileOpt global constant to avoid a harmless compiler warning by drh ยท 8 years ago
- bd11a2a Ensure that the query planner knows that any column of a flattened LEFT JOIN by dan ยท 8 years ago
- 40db2fd Fix a missing comma in the previous check-in. by drh ยท 8 years ago
- ea03adc Rework the code in ctime.c a bit to report on more compile time options. And by dan ยท 8 years ago
- 814aad6 Ensure that the value of the THREADSAFE symbol is always included when by dan ยท 8 years ago ctime-refactor
- f417f28 Add extra test cases for sqlite3changeset_apply() and ALTER TABLE ADD COLUMN. by dan ยท 8 years ago
- da1f49b Rework the code in ctime.c a bit to report on more compile time options. And by dan ยท 8 years ago
- ba87c6c Minor refactoring change to clarify how ATTACH works. No functional changes. by drh ยท 8 years ago
- 76cf858 Prevent pagesize changes on VACUUM in encrypted databases even when running by drh ยท 8 years ago
- 0942559 Move the "shell_add_schema()" SQL function used by the ".schema" command by drh ยท 8 years ago
- f217f3b Fix typo and improve the wording of the description of "Metadata" in the by drh ยท 8 years ago
- 90cdec0 Fix harmless compiler warnings in the shell.c file by drh ยท 8 years ago
- 594ccd0 Improvements to the ".tables" command in the command-line shell so that by drh ยท 8 years ago
- 20c9c3f In the command-line shell, enhance the ".schema" command show that it by drh ยท 8 years ago
- c74d962 Enhance the sqlite3_analyzer.exe utility so that it computes and shows the by drh ยท 8 years ago
- 2ebf8f4 Fix sqlite3rbu_close() so that the pzErrmsg parameter may be passed NULL. by dan ยท 9 years ago
- 6e3bccd Fix the processing of double-negatives in WHERE clause constraints with by drh ยท 9 years ago
- 56790ea Fix an off-by-one error that messes up the display of loop codes in the by drh ยท 9 years ago
- eafc6df When reusing a materialized view, make sure the estimated number of by drh ยท 9 years ago
- e46c63d Fix the sessiondiff test module so that it does not run if the session by drh ยท 9 years ago
- c62aab5 Fix a potential null-pointer deference following OOM introduced by by drh ยท 9 years ago
- c097b30 Update the documentation to make it clear that the table name parameter by drh ยท 9 years ago
- c5d353f Adjust the implementation of the ".selftest" feature of the shell to avoid by drh ยท 9 years ago
- d96cc6f Add a testcase() to confirm that an OOM on sqlite3DbStrNDup() is handled by drh ยท 9 years ago
- ca66f6c Ensure pointer map entries are always added when a row that does use overflow by dan ยท 9 years ago
- cc97ca4 In SQLITE_DEBUG mode, attempt to log the page number of the database that by drh ยท 9 years ago
- d1417ee Add the SQLITE_DEFAULT_ROWEST compile-time option for changing the estimated by drh ยท 9 years ago
- cf1393d Fix a subtle bug in the remember UDF of the kvtest.exe utility program. by drh ยท 9 years ago
- b1d66c5 Fix a bug in test_fs.c that occurs when the first component of a path contains by dan ยท 9 years ago
- a4327e6 For the kvtest utility, add the --vacuum option to "kvtest stat" and also by drh ยท 9 years ago
- 64bf76d Fix the column width deduction logic in the command-line shell to account by drh ยท 9 years ago
- 3b77506 Omit some of the fstree tests in vtabH if the PWD contains LIKE wildcards. by drh ยท 9 years ago
- 4c88348 Initialize a variable to zero to prevent an (incorrect) compiler warning of by drh ยท 9 years ago
- 5930f66 Fix the SQLITE_PTR_TO_INT macro so that works on recent versions of LLVM on by drh ยท 9 years ago
- 629a75f Remove unused header file from kvtest. by drh ยท 9 years ago
- 1346fda In kvtest, add the ability to work with a hierarchy of files on disk, by drh ยท 9 years ago
- 16d6290 Add the --nocheckpoint and --multitrans options to kvtest. by drh ยท 9 years ago
- f151890 Add the --fsync flag to kvtest, and document the --nosync flag. by drh ยท 9 years ago
- a2e71ce Work toward enhancing kvtest to measure write performance. by drh ยท 9 years ago
- 170ad68 Change the name of the OP_Seek opcode into OP_DeferredSeek for better by drh ยท 9 years ago
- 6c2d94f Fix a typo in the header comment of the "series.c" virtual table extension. by drh ยท 9 years ago
- c5e56b3 Add a comment to the Lemon documentation regarding the security of the by drh ยท 9 years ago
- cdbb126 Add the SQLITE_STMTSTATUS_MEMUSED opcode to sqlite3_stmt_status() by drh ยท 9 years ago
- 3528f6b Add the SQLITE_STMTSTATUS_MEMUSED option for sqlite3_stmt_status() that reports by drh ยท 9 years ago stmtstatus-memused
- 6b37e0a Add the experimental "stmts" virtual table for introspection of prepared by drh ยท 9 years ago
- d4ab003 Avoid allocating excess memory to the KeyInfo objects. by drh ยท 9 years ago
- d5bdd5e Remove a completely unnecessary memset() from the INSERT code generator. by drh ยท 9 years ago
- b8a1290 Very small performance increase in sqlite3VdbeSetNumCols(). by drh ยท 9 years ago
- 02f18cc Reorder fields in the PgHdr object for a performance increase. by drh ยท 9 years ago
- a8b9793 Avoid unnecessary memory zeroing during expression list allocation. by drh ยท 9 years ago
- d03257c Size and performance optimizations to sqlite3ResolveExprNames(). by drh ยท 9 years ago
- 2ab792e Change sqlite3BtreeNext() and sqlite3BtreePrevious() so that they return by drh ยท 9 years ago
- d26d2c7 Omit a test of codepoint 0x202F (non-break narrow space) from the fts3 ICU by dan ยท 9 years ago
- e70d01f More efficient error handling and reset in the binding mechanism. by drh ยท 9 years ago
- 1e669f0 Omit unnecessary fstat() calls for determining the database file size, by drh ยท 9 years ago
- 8c9ed05 Fix an issue with OPT_FEATURE_FLAGS in configure.ac. by drh ยท 9 years ago
- 77f6af2 Avoid unnecessary fstat() calls to determine the database size when by drh ยท 9 years ago io-opt
- 5f5a2d1 Avoid unnecessary calls to fstat() to determine the database file size. by drh ยท 9 years ago
- 8abc54e Fix a typo in a comment. No code changes. by drh ยท 9 years ago
- 979dd1b Optimizations to the Walker object and its methods to make the code a little by drh ยท 9 years ago
- d8a2956 Correctly initialize the iSelectId of FROM clause terms that are a self by drh ยท 9 years ago
- e16a350 Improve shell help text for the '.open' command. by mistachkin ยท 9 years ago
- ae2ac85 Smaller and faster vdbeSorterCompareText(). by drh ยท 9 years ago
- 14e845a Small performance increase and size decrease in the btreeInitPage() routine. by drh ยท 9 years ago
- 137c46f Merge the LEFT JOIN query flattener fixes from 3.19.2. by drh ยท 9 years ago
- 65ff63e Version 3.19.2 by drh ยท 9 years ago version-3.19.2
- dc6de47 The SQLITE_EXTRA_IFNULLROW compile-time option causes OP_IfNullRow opcodes by drh ยท 9 years ago
- 074ce1e The TK_IF_NULL_ROW expression node must be treated as a variable that by drh ยท 9 years ago
- 8389bff Increase the version number to 3.19.2 since ticket [7fde638e94287d2] is by drh ยท 9 years ago
- f43ce0b The TK_IF_NULL_ROW expression node must be treated as a variable that by drh ยท 9 years ago
- 831265f Fix harmless compiler warnings in FTS5. by mistachkin ยท 9 years ago
- 6fb139e Version 3.19.1 by drh ยท 9 years ago version-3.19.1
- 63ad86e Fix a problem in STAT4 equality estimation for multi-column indexes by drh ยท 9 years ago
- ce13b99 Remove the msvc.h header file from the autoconf tarball. by drh ยท 9 years ago
- 92b7175 Do not use strcpy() in the (obsolete) amatch extension. by drh ยท 9 years ago
- 3c790f2 Disable the LEFT JOIN flattening optimization for aggregate queries, as it by drh ยท 9 years ago
- 1d1fc5e Disable the LEFT JOIN flattening optimization for aggregate queries, as it by drh ยท 9 years ago