aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* | Ensure that the query flattener does not change an ON clause term to a WHERE ↵dan2024-12-02
| | | | | | | | | | clause term. FossilOrigin-Name: bdd408a2557ff05c9ea962a94b442f7c078d8e1ec27035aa95bc23d4d2bd5606
* | Fix a comment typo on the sqlite3ExprIsSingleTableConstraint() routine.drh2024-12-02
| | | | | | FossilOrigin-Name: 346a845bf1cd1c7e542f7bf763d86c197d9a3b4f3ea38ade416790a1cf80e6f2
* | Fix a harmless typo in debugging output.drh2024-12-02
| | | | | | FossilOrigin-Name: 578f76cfb2e298fe6bfd278b545091fe682d01feb0be56ef57b6c9f2c179ac61
* | Slighly less confusing output from treeview during debugging.drh2024-12-02
| | | | | | FossilOrigin-Name: 7aef0b93050cdb79cae68361e84047cea2e8e7251d0581ce917da03352bb1f16
* | In sqlite_dbpage, cancel any pending truncate operation if there an errordrh2024-11-30
| | | | | | | | | | occurs later in the transaction. FossilOrigin-Name: 1abab10f85a4dba5ffe51a30eeef30853c120e5566ed97b3af1526fff597c647
* | A NEVER() that was added by [eb5ac9e5b9a4f9c8] is violated by the ifnull()drh2024-11-30
| | | | | | | | | | in-line function. This check-in fixes that problem. FossilOrigin-Name: 2220ccf4d6fea2413015c72fd318003b4b5afeae7cb7586b714fce36212d8c49
* | Fix a NEVER() in the iif() logic that can be true if compiled withdrh2024-11-29
| | | | | | | | | | SQLITE_ENABLE_UNKNOWN_SQL_FUNCTIONS. Problem introduced by [eb5ac9e5b9a4f9c8]. FossilOrigin-Name: 3ec2df5a6c731b59b0ab132ee59c74d107f9c4bd32cf47d9776887858b9c0dea
* | Simplification to the fix in the prior check-in.drh2024-11-28
| | | | | | FossilOrigin-Name: f79cb748c9447ca4d2184a24219feb19571eb79870e0bedf14704743a3d5f8b9
* | The sqlite3ExprCompare() routine should always compare the same variablesdrh2024-11-28
| | | | | | | | | | as equal to one another, regardless of whether or not QPSG is set. FossilOrigin-Name: df95d5209a77c0302e08ea7b1f248646fb2a062ba5beca898678aee0a1d03a3a
* | Add two NEVER() conditions.drh2024-11-28
| | | | | | FossilOrigin-Name: 4f358ad20dc8a45e7aaa1a1996b40abd39caf34be6556ed54e1e0c80572b7ac0
* | Enhancements to sqlite3ExprImpliesExpr() so that it realizes thatdrh2024-11-28
| | | | | | | | | | "iif(A,B)" implies "A". FossilOrigin-Name: d96ecbee59b50eca25447456dfff2c168e8eade7a68e542932d5829f97debb31
* | Provide a two-argument version of the iif() function, plus an alternativedrh2024-11-26
| | | | | | | | | | spelling that only requires a single "i". FossilOrigin-Name: a251ee645e11e24b67473d8a5bd3f8b72fde1ac9d5fda074f5da2297deb2faa8
| * Further test file tweaks to run with SQLITE_OS_WINRT builds.dan2024-12-03
| | | | | | FossilOrigin-Name: 54853421ba012c192ee2a41873e6ba10e187a6ec2e23182ccbec56864604166f
| * Fix the lock_win32_file test command so that it works with winrt builds.dan2024-12-03
| | | | | | FossilOrigin-Name: 5994656074b2db2c172f4c690c3b40cadd12e91d737fb91a03268148f8b49421
| * Fix a problem with SQLITE_OS_WINRT builds.dan2024-12-02
| | | | | | FossilOrigin-Name: baf43e8c7da6aacce874ec30d0c9e1dcb44c5ed9de2214099d42fbbd335d2e93
| * On windows, use a separate handle for each connection for xShmLock() locks.dan2024-11-30
| | | | | | FossilOrigin-Name: 272d552f126357d7bc16d84f13a4bea823abc6ef7faf90e3cffcedb68210f52a
| * Ensure that file-handle winShmNode.hFile.h is used in a thread-safe manner.dan2024-11-25
| | | | | | FossilOrigin-Name: 7a32b497ab16774021924a8536e1025a0a01740a6484f0de17623a69713511d8
| * Fixes for code on this branch. Now appears to work, but is not tested well.dan2024-11-25
| | | | | | FossilOrigin-Name: 0568fc6dde41dd29e85e697cd1865feb4db6aaae09d5e5100b3f97cab93590eb
| * Supports SQLITE_ENABLE_SETLK_TIMEOUT on windows. Does not work properly yet.dan2024-11-22
|/ | | FossilOrigin-Name: 737ca8a9fb9dc74b28f2186d93c5101463497445d0fabba3def61fee29abf2c8
* Fix another issue in argument expansion on Windows for tclsqlite3.c indrh2024-11-22
| | | | | | interpreter mode. Problem introduced by check-in [9b87ea219bce5689] and unfixed by [cd942dce148c9d8f]. FossilOrigin-Name: 0fe1622cec95b7ebecc127ee57a08113d3da1dadbe72c03a13d6751b3043e50f
* Fix harmless scanbuild warnings caused by the introduction of thedrh2024-11-22
| | | | | ".dbtotxt" command into the CLI by check-in [b43acf5a8cd4a5ef]. FossilOrigin-Name: 554d8fbd865436ace900859874b6c8c7e1b782184158a86b7788644e27bd1997
* Fix some harmless scanbuild warnings in the shell.drh2024-11-22
| | | FossilOrigin-Name: 9ba1c9b505d459366274043c1c5327f1a9d4e15d3564d99f8a15926af1d6d247
* Fix harmless compiler warning caused by [c77a4a42f2e3d164].drh2024-11-22
| | | FossilOrigin-Name: 063690d2c5cc2a887055b9141d3fcdb4fd2fa35d069c9a39b81903c531c73fcf
* Make ".scanstatus" an undocumented alternative name for ".scanstats" in the CLI.drh2024-11-21
| | | FossilOrigin-Name: f20688efc2bc54648618b0aa2593a771f455ee8cc703b52273452d15e680b67c
* Document that -nofollow does not work on Windows. Fix Windows symlinkdrh2024-11-21
| | | | | test cases for when the test suite is run as administrator. FossilOrigin-Name: 4de8a75ec5a2e3655a2d0c5a9333b58f8b48b681255f0a01866b610ae6249bc2
* Bug fix in the SubrtnSig logic from [c9a3498113074bbc], if a subquery isdrh2024-11-20
| | | | | | | | copied and then changes are made to the copy, be sure to give the copy a unique Select.selId value so that the original will not be substituted in place of the modified copy. [forum:/forumpost/0b9ded2f8428ac00|Forum post 0b9ded2f8428ac00]. FossilOrigin-Name: 19d1bede5654bcfa9f7a151b9b2616a3d10873b8e3f8cf54a3a7e810da08f844
* Provide the sqlite3ShowWhereTerm() interface callable interactively fromdrh2024-11-20
| | | | | a debugger, when compiling with SQLITE_DEBUG. FossilOrigin-Name: c77a4a42f2e3d16427a69295436efe36335e56e97abd0efba814092498a8dea8
* Do not report an sqlite3_error_offset() for errors that occur inside ofdrh2024-11-20
| | | | | | views or triggers, since the text of those elements is not part of the original query. FossilOrigin-Name: bf66c6dfc25c2562a4e6a5b24dd1660213a8fefbb5763e7583b87fb06dbaaf43
* Attempt to reduce divergence with the wal2 branch.drh2024-11-18
| | | FossilOrigin-Name: e0d8f9916c2d899094b71af74f44e089a97db6d80f09eb80a5d8be733c1bf942
* Attempt to reduce divergence with begin-concurrent.drh2024-11-18
| | | FossilOrigin-Name: f783d90187fb326faa3d0244b30138b023c4a8483486f260b7a022a927c13f3a
* Make the --vfstrace output from the CLI go to the same output channel asdrh2024-11-17
| | | | | everything else. FossilOrigin-Name: f71d4900205ae6ee41f849c4026d0fe4d6cf281dfc3bac8105fc8e242d128b67
* Call fflush() on ".echo" output from the shell, so that the output todrh2024-11-16
| | | | | stdout is aligned with output to stderr. FossilOrigin-Name: c38b9db3c4f71706a7d211424da64311e6e5daf64b224565a6d82d4b1a68e261
* Fix argument expansion in sqlite-tclsh on Windows such that if an argumentdrh2024-11-16
| | | | | | does not match a filename even after glob expansion, it is appended to the argument list verbatim. FossilOrigin-Name: cd942dce148c9d8f5a94cee61923aad8d1b732b807e004005f78323be30c02e7
* Remove some obsolete macros from the CLI.drh2024-11-14
| | | FossilOrigin-Name: 5c4eb625709eda24b11a0437b150a60fc1497c136a4a2ab2b9d559d893dd397a
* Fix a problem with window functions min() and max() when used with a FILTER ↵dan2024-11-14
| | | | | clause. Forum post [forum:/forumpost/e9126d554a | e9126d554a]. FossilOrigin-Name: d15fb0f75e64bbfdb8df0c0d0358aafbbd7d5e2048df676dafe1abd5e9917f2a
* Fix a memory leak in the ".dump" command of the CLI that can occur if andrh2024-11-13
| | | | | | error other than database corruption is seen while trying to query the database. FossilOrigin-Name: 2560cc7072c923f534a5de1e15d2b0dd4ac5faf0a8876d9e3bf9804345585444
* Add the SQLITE_FCNTL_NULL_IO file-control.drh2024-11-13
| | | FossilOrigin-Name: f0e917fcf51b59f8ccfe5b9341937341d0e6016eb275d6c33dcb10b0b301a9da
* Clarify the documentation to make it clear that rows inserted by adrh2024-11-11
| | | | | | CREATE TABLE AS SELECT statement are not counted by sqlite3_count64(). [forum:/forumpost/1e6cde5648|Forum post 1e6cde5648]. FossilOrigin-Name: 5c5982e3937acdcda43d6c5b46a95b82bc1839c3558a4b9ae9022384e0f13f04
* Add the ".dbtotxt" command to the CLI.drh2024-11-11
| | | FossilOrigin-Name: b43acf5a8cd4a5efbb90b71af7710084f49bb90ffe4f56de168e8c3a6b679124
* Increase the minimum SQLITE_LENGTH_LIMIT from 1 to 30 to avoid problems doingdrh2024-11-08
| | | | | | simple things like converting strings into integers. See also [8fd5b8ec4ab9b555]. FossilOrigin-Name: 6aa01707af4bd96f0f173f9e87f2398be7e6f246f59baa117092849a626b2d61
* Further improvements to the ".mode json" output in the CLI.drh2024-11-07
| | | FossilOrigin-Name: 6201b5707f8c895028f9c08cb4f83d33a16a91bf04ed3830ac51aa763d6b7205
* Improve the ".mode json" output of the CLI so that it encodes U+007f usingdrh2024-11-05
| | | | | an escape sequence. FossilOrigin-Name: 8b58cf9bbd3090c60f1ee7468cdeeb0b0fa4560d1e51a5fd0bef43692d10fe04
* Change a (#define HAVE_FCHMOD) to (#define HAVE_FCHMOD 1) per user request ↵stephan2024-11-05
| | | | | in [forum:24cf6020c6|forum post 24cf6020c6]. There's no semantic change for this tree, but this is consistent with how auto-config tools would define it and the empty #define interferes with some downstream code. FossilOrigin-Name: 9c46d84f3bf2f5876211b498104067d32a4000979fad1345deb1000c23716d75
* Fix harmless compiler warnings.drh2024-11-04
| | | FossilOrigin-Name: bc93e17924f732468282c5e7a483811d27af573a47aec8ba806f4fe3c5919893
* Ensure that the database encoding is detected before the code generator getsdrh2024-11-04
| | | | | | | too far down into byte-code generation and execution, but not so early that it interferes with initialization. [forum:/forumpost/bc75a4d20b756044|Forum thread bc75a4d20b756044]. FossilOrigin-Name: af7173a10ec6a4ab465207c1ee20393e8b5f06604c0f3b2fdc19e52c2fc013d5
* Avoid loading the entire record into memory for an sqlite3_preupdate_old() ↵dan2024-11-04
| | | | | call that retrieves an IPK value. FossilOrigin-Name: 7f4de43733200beeb3ff0a70d51bbc68f5331895698ea95a82741cfd7bb66834
* Extra defenses against UAF when failing to allocate a transient cursor. Nodrh2024-10-31
| | | | | | known path to a UAF currently exists. This change just helps with the static analysis to prove it. FossilOrigin-Name: bae05811116dae0d05bcc001655416d0316ca1c16cbde2bd49f691c832261b89
* Fix the CLI so that it can use either the canonical Antirez linenoisedrh2024-10-30
| | | | | | | (with HAVE_LINENOISE=1) or Steve Bennett's enhanced linenoise that works on the Win32 console as well as on Unix (with HAVE_LINENOISE=2). The ./configure script detects which one to use and sets HAVE_LINENOISE accordingly. FossilOrigin-Name: c0048e4482e9cb9662637899922af9609e7c8fb002a37b71e6181074df7a0dd1
* Enclose the generated "sqlite3.c" and "sqlite3.h" in a single big #ifdef sodrh2024-10-28
| | | | | | that if they get truncated by more than a little whitespace, they will not compile and the truncation can be easily detected. FossilOrigin-Name: c3b624e2a903f0c975bc8b7288b98616a4a22b2a574738d1f578bfad1d6d8b91
* Remove the never-used and never-documented and long-ago deprecateddrh2024-10-28
| | | | | user-authentication feature option. FossilOrigin-Name: 3a3f7bf4307c27e56546e51da06ecc9a262cdf155fda2dd359aa2326d207a147