- dcc3f4b Disable compiler intrinsics when using the Intel C Compiler. by drh ยท 8 years ago icc-fix
- 08f1efe Add the "PRAGMA secure_delete=FAST" option, which overwrites most deleted by drh ยท 8 years ago
- a690ff3 Change the error message text for SQLITE_ERROR to omit the part about by drh ยท 8 years ago
- a7a0bfa In the command-line shell, when running ".schema" give a sensible error when by drh ยท 8 years ago
- d5eae66 Add new PRAGMAs: "function_list", "module_list", and "pragma_list". All are by drh ยท 8 years ago
- 8ae11aa Add the "Pragma_list" pragma. Put all three pragmas created on this branch by drh ยท 8 years ago list-pragmas
- 40cf27c Enhance the sqlite3VdbeMultiLoad() interface to automatically generate the by drh ยท 8 years ago
- ab53bb6 Add new pragmas: "function_list" and "module_list" by drh ยท 8 years ago
- d108667 Exploit the fact that Expr.pRight and Expr.x are never used at the same time by drh ยท 8 years ago
- c2d14a9 More efficient and compact implementation of walkExpr(). by drh ยท 8 years ago
- b98a2e3 More aggressive use of EP_Leaf on expression nodes, to help prune searches. by drh ยท 8 years ago
- 3da70a6 Very slightly smaller and faster sqlite3WalkSelect(). by drh ยท 8 years ago
- 9d8e401 More compact implementation of the typeof() SQL function. by drh ยท 8 years ago
- ebaaa67 Avoid unnecessary upper-to-lower case conversion for function names when by drh ยท 8 years ago
- 3b02e0f Small size reduction in findCollSeqEntry(). by drh ยท 8 years ago
- 666e866 Avoid unnecessary calls to sqlite3GetCollSeq() for a small performance gain. by drh ยท 8 years ago
- 07a3b11 Slightly more compact implementation of the byte-code generator for by drh ยท 8 years ago
- 169a689 Small performance increase in sqlite3SrcListAppend(). by drh ยท 8 years ago
- a35d851 Make the hash table implementation a little smaller and faster. by drh ยท 8 years ago
- 269ba80 Add the count-of-view optimization when compiled using by drh ยท 8 years ago
- cde336e Attempt to improve documentation on sqlite3_column_ and sqlite3_value_ by drh ยท 8 years ago
- fd76b71 Improved documentation for sqlite3_value_type(). by drh ยท 8 years ago
- a501f7d In the command-line shell, add the -quote option to start up in quote mode. by drh ยท 8 years ago
- c31b79d Remove the ".explain" command from the ".help" output of the command-line by drh ยท 8 years ago
- 1d1982c Edit comments in sqlite.h.in used for generating documentation, to improve by drh ยท 8 years ago
- 01e6d54 Add interfaces sqlite3_prepare_v3() and sqlite3_prepare16_v3() with the by drh ยท 8 years ago
- c6603af Rename the "stmts" virtual table to just "stmt" without the final "s". by drh ยท 8 years ago
- c799833 Add the stmts virtual table to testfixture builds. Add new compile-time by drh ยท 8 years ago
- 366050e Add the "stmts" virtual table to the amalgamation, activated when compiled by drh ยท 8 years ago
- 00d11d4 Add the SQLITE_STMTSTATUS_REPREPARE and SQLITE_STMTSTATUS_RUN options to by drh ยท 8 years ago stmts-vtab
- 5aa307e Fix the exprCompareVariable() routine so that it works for non-UTF8 text. by drh ยท 8 years ago partial-index-variables
- c080422 Alternative implementation of exprCompareVariable(). Need to run tests on by drh ยท 8 years ago
- 3e380a4 Make the query planners use of partial indexes based on bound variables by drh ยท 8 years ago
- 37f9060 Merge the in the latest enhancements from trunk. by drh ยท 8 years ago
- d0bbe4e Incorporate recent trunk changes. by drh ยท 8 years ago prepare_v3
- f00f530 Build the "stmts" virtual table into the amalgamation. It is active only 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
- 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
- 5aa550c Consider the values bound to SQL variables when determining whether or not a by dan ยท 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
- 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
- a5907a8 Experimental "PRAGMA secure_delete=FAST" pragma. The intent is to overwrite by drh ยท 8 years ago fast-secure-delete
- 40db2fd Fix a missing comma in the previous check-in. by drh ยท 8 years ago
- 814aad6 Ensure that the value of the THREADSAFE symbol is always included when by dan ยท 8 years ago ctime-refactor
- 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 ยท 9 years ago
- 90cdec0 Fix harmless compiler warnings in the shell.c file by drh ยท 9 years ago
- 594ccd0 Improvements to the ".tables" command in the command-line shell so that by drh ยท 9 years ago
- 20c9c3f In the command-line shell, enhance the ".schema" command show that it by drh ยท 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
- c62aab5 Fix a potential null-pointer deference following OOM introduced by by drh ยท 9 years ago
- e9acf4b Merge enhancements and fixes from trunk. 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
- 0282c03 Merge in trunk enhancements. by drh ยท 9 years ago
- d1417ee Add the SQLITE_DEFAULT_ROWEST compile-time option for changing the estimated 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
- 64bf76d Fix the column width deduction logic in the command-line shell to account by drh ยท 9 years ago
- 4c88348 Initialize a variable to zero to prevent an (incorrect) compiler warning of by drh ยท 9 years ago
- 170ad68 Change the name of the OP_Seek opcode into OP_DeferredSeek for better by drh ยท 9 years ago
- 2c2f392 Add interfaces sqlite3_prepare_v3() and sqlite3_prepare16_v3() with 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
- 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
- e70d01f More efficient error handling and reset in the binding mechanism. 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