- fba24d3 Origin should not send content for the lock-byte page to the replica, in by drh ยท 1 year, 2 months ago parseuri
- 74672ac New SQL function for testing/debugging use only: parseuri(). by drh ยท 1 year, 2 months ago
- 2c72c55 Back out [2f7eab381e16] because the stderr output on systems without gmake causes grief in the testing tools. by stephan ยท 1 year, 2 months ago
- 706fdee Add ext/wasm to the top-level clean/distclean rules in such a way that any error due to a lack of gmake are ignored. by stephan ยท 1 year, 2 months ago
- c8c95f5 Fix typo in documentation for SQLITE_SUBTYPE. No code changes. by dan ยท 1 year, 2 months ago
- 51bbf0c Unconditionally include <ctype.h> in sqliteInt.h, even in builds where by drh ยท 1 year, 2 months ago
- 1e2834d Fix to the previous: The dbpageRollbackTo() method should return SQLITE_OK. by drh ยท 1 year, 2 months ago
- c51dccb Fix missing return value from the new dbpageRollbackTo() callback. by drh ยท 1 year, 2 months ago
- 46a62af Modify the behavior of sqlite_dbpage so that the null-INSERT that truncates by drh ยท 1 year, 2 months ago
- 44b8c37 Fix a typo in fts5delete.test. by dan ยท 1 year, 2 months ago
- c5c3cbc Add the contentless_unindexed=1 option to fts5. This causes the values of any UNINDEXED columns of a contentless fts5 table to be stored persistently in the database. by dan ยท 1 year, 2 months ago
- 3b3f230 Adjust the new truncation behavior of sqlite_dbpage(N,null) such that it causes by drh ยท 1 year, 2 months ago
- 92e7157 Remove all use of the "long double" data type from SQLite, as hardware support by drh ยท 1 year, 2 months ago
- 010f9f8 Remove a few more traces of long double from the code. by drh ยท 1 year, 2 months ago omit-long-double
- dceffee Ensure that if sqlite3_snapshot_get() is called immediately after a "BEGIN", then it locks the database such that the returned snapshot object may not be invalidated by a writer or checkpointer until after the sqlite3_snapshot_get() caller has closed its transaction. by dan ยท 1 year, 2 months ago
- 512ad53 Merge latest trunk changes into this branch. by dan ยท 1 year, 2 months ago snapshot_get-locking
- f9d1141 Update docs for sqlite3_snapshot_get(). by dan ยท 1 year, 2 months ago
- e8b2c92 Remove all code that makes use of the C-language "long double" datatype. by drh ยท 1 year, 2 months ago
- 7151010 New #ifdefs to omit code that is unused when SQLITE_USE_LONG DOUBLE is defined. by drh ยท 1 year, 2 months ago
- 1f2faa6 Another comment about the LONGDOUBLE wasm topic. No code changes. by stephan ยท 1 year, 2 months ago
- c9c1b65 Use the new SQLITE_USE_LONG_DOUBLE to disable long-double support in WASM builds, as they cannot be represented in JS and this saves approximately 5.5kb in the resulting wasm file. by stephan ยท 1 year, 2 months ago
- dac22f6 Add compile-time option -DSQLITE_USE_LONG_DOUBLE=0 to omit all attempts to use by drh ยท 1 year, 2 months ago
- ed94e0e Add an #if'd-out block to sqlite3-wasm.c mentioning the LONGDOUBLE_TYPE, as brought up in [forum:cbfb0d0ac0a4e349 | forum post cbfb0d0ac]. No functional changes. by stephan ยท 1 year, 2 months ago
- cacef23 Fix the character width tables for the CLI such that all unicode code-points by drh ยท 1 year, 2 months ago
- d5838ea In fts5, avoid starting a new merge of level L if there exists already an ongoing merge of a level less than L. by dan ยท 1 year, 2 months ago
- 54fd01c Fix the CLI so that the --bom option only outputs a single BOM, not two. by drh ยท 1 year, 3 months ago
- dcf757c Merge trunk changes into this branch. by dan ยท 1 year, 3 months ago fts5-contentless-unindexed
- 33669ef Add another missing mkdir to the wasm build process. by stephan ยท 1 year, 3 months ago
- 54e35b5 Add tests for DELETE on contentless, contentless-delete and contentless-unindexed fts5 tables. by dan ยท 1 year, 3 months ago
- 5ec9ed7 Complete a line of documentation which was interrupted mid-sentence. by stephan ยท 1 year, 3 months ago
- 6a83369 wasm: move the makefile-eval-generated fiddle rules into mkwasmbuilds.c. Squelch some warnings from grep when running 'make clean' on a clean tree. by stephan ยท 1 year, 3 months ago
- d4c735d Ensure that the temporary build dir is mkdir'd by wasm deps which depend on it. by stephan ยท 1 year, 3 months ago
- 51fb37d For wasm builds: automatically use higher optimization (but slower build) levels when a target related to deliverables (as opposed to dev mode) is explicitly invoked. by stephan ยท 1 year, 3 months ago
- fabae7a Minor makefile doc fixes. No functional changes. by stephan ยท 1 year, 3 months ago
- 3c58039 Merge wasm-build-rework branch into trunk. Summary: 1) add optional bare-bones build, stripped of many optional library features, 2) replace much of the hyper-spaghetti wasm-specific makefile code with a more legible static code generator. by stephan ยท 1 year, 3 months ago
- add1947 Fix fiddle build broken by recent build-level reworks. Remove a stale reference to an old CSS file. by stephan ยท 1 year, 3 months ago wasm-build-rework
- 58b4a8f Extra test cases for UPDATEs of contentless tables. by dan ยท 1 year, 3 months ago
- 43eafb7 Fix a problem with UPDATE statements that modify the rowid of contentless_delete=1 tables. by dan ยท 1 year, 3 months ago
- 08f1ba0 Fix a problem with UPDATEs that do not modify all UNINDEXED columns of a contentless_delete=1, contentless_unindexed=1 table. by dan ยท 1 year, 3 months ago
- c707b2e Squash sign-comparison warnings reported in [forum:5e605a763a65c3f8 | forum post 5e605a763a65c3f8]. by stephan ยท 1 year, 3 months ago
- 0992764 Merge trunk changes into this branch. by dan ยท 1 year, 3 months ago
- bcd6d5d Allow UPDATEs of unindexed columns in fts5 contentless_unindexed=1 tables. Testing to come. by dan ยท 1 year, 3 months ago
- c94e4a7 Fix a harmless compiler warning in the CLI. by drh ยท 1 year, 3 months ago
- 74194f1 Add the ext/misc/sqlite3_stdio.c portability interface and incorporate it by drh ยท 1 year, 3 months ago
- 2b041fb Provide SQLITE_U8TEXT_ONLY and SQLITE_U8TEXT_STDIO compile-time options by drh ยท 1 year, 3 months ago cli-stdlib
- 2c77d51 Resolve a harmless compiler warning in QNX builds. by stephan ยท 1 year, 3 months ago
- d0720ee When possible, avoid taking wal file read-lock 0 in sqlite3_snapshot_get(). by dan ยท 1 year, 3 months ago
- 2fb0553 Clarification of the meaning of the nByte parameter to sqlite3_prepare(). by drh ยท 1 year, 3 months ago
- b7ceffd Fix shell test cases to account for recent additions to the ".help" output. by drh ยท 1 year, 3 months ago
- 66b3ed3 Always show HTML table headers in ".www" output mode. by drh ยท 1 year, 3 months ago
- 878db7b Add the --plain option to the ".www" dot-command. by drh ยท 1 year, 3 months ago
- 7119a6c Have the zipfile and fileio extensions use sqlite3_stdio.c when it is by drh ยท 1 year, 3 months ago
- 95f35b6 Redirect timer output just like any other text. by drh ยท 1 year, 3 months ago
- 62d9691 Improvements to ".www" and ".output -w" so that text that is not part of by drh ยท 1 year, 3 months ago
- 2a9254c Add the "www" output mode that include <table> in the HTML output. by drh ยท 1 year, 3 months ago
- 9e59c06 Always include a UTF-8 BOM at the beginning of the output CSV when using by drh ยท 1 year, 3 months ago
- 777c35d Prevent regular DELETE and UPDATE statements from running against contentless_unindexed=1 tables that are not also contentless_delete=1. by dan ยท 1 year, 3 months ago
- 853520d Fix stray fputs() calls in the CLI. by drh ยท 1 year, 3 months ago
- 38b4158 Use sqlite3_fgets() instead of fgetc() to end the startup debugging pause by drh ยท 1 year, 3 months ago
- 8f1f9ef Merge trunk enhancements, and especially the zero- and double-width character by drh ยท 1 year, 3 months ago
- 8cd30e3 In the CLI, for columnar output formats, try to account for the presence of by drh ยท 1 year, 3 months ago
- f4382b2 Improvements to comments on data structures and subroutines. by drh ยท 1 year, 3 months ago variable-width-char
- 613c2ee Minor wasmfs speedtest1 build tweaks. Disable one wasmfs demo which was broken by Emscripten-side changes. by stephan ยท 1 year, 3 months ago
- 18e2ace Fix over-length lines in the shell source code. by drh ยท 1 year, 3 months ago
- 697c3fb Fix error messages in the shell. by drh ยท 1 year, 3 months ago
- 63558ea Get fiddle working again on this branch. by drh ยท 1 year, 3 months ago
- 6ba175f Port sqlite3_analyzer.exe to use sqlite3_stdio. by drh ยท 1 year, 3 months ago
- a55901a Port sqldiff over to use sqlite3_stdio. by drh ยท 1 year, 3 months ago
- 0be2dd9 Get output redirection working again in the CLI. by drh ยท 1 year, 3 months ago
- 29057f3 Fix a memory leak in sqlite3expert.c introduced by [f1d76c86]. by dan ยท 1 year, 3 months ago
- 57b32ef Add the sqlite3_stdio.h library for Windows console I/O. by drh ยท 1 year, 3 months ago
- d2917d9 Minor tweaks in mkwasmbuilds.c. by stephan ยท 1 year, 3 months ago
- 88c43ce Wasm build cleanups. Fix the wasm speedtest1 builds broken by yesterday's refactoring. by stephan ยท 1 year, 3 months ago
- 3c90b86 Avoid an error in sqlite3expert if the database has existing indexes on expressions. by dan ยท 1 year, 3 months ago
- 4e34558 Use _wfopen() instead of fopen() on Windows in the CLI. by drh ยท 1 year, 3 months ago
- 118ac6a Always use fputws() for output to a Windows command-line prompt. by drh ยท 1 year, 3 months ago
- 7d24e6b Remove an ALWAYS() that can sometimes be false, with wildly incorrect SQL by drh ยท 1 year, 3 months ago
- 405ae97 Further wasm build cleanups and tweaks. No functional changes. by stephan ยท 1 year, 3 months ago
- 415acd0 In the CLI, when displaying results in a columnar format, take into account by drh ยท 1 year, 3 months ago
- 6ed21e8 Typo fix in makefile comments. by stephan ยท 1 year, 3 months ago
- 69cce89 wasm: replace much of the eval makefile spaghetti with equivalent code generated from a small C app. It turns out that's easier to read and write than doing the same thing from shell or tcl code, due entirely to C's lack of need for escaping dollar signs. by stephan ยท 1 year, 3 months ago
- 1d9db01 CLI uses only lib-c for I/O on Windows. No calls to Win32. Works on Win11, by drh ยท 1 year, 3 months ago
- 253695c Fix a couple of problems with the sessions streaming interfaces. by dan ยท 1 year, 3 months ago
- d69b424 Merge current trunk into this branch. by stephan ยท 1 year, 3 months ago
- 5e419c1 Add the run-fuzzcheck target to the MSVC makefile. by drh ยท 1 year, 3 months ago
- 38f2c5f If the database filename pointer passed to sqlite3_open(), change it by drh ยท 1 year, 3 months ago
- 8a894cd Fix comment typo in the fileio.c extension. No changes to code. by drh ยท 1 year, 3 months ago
- 7f0e0c7 New assert()s to help verify union access. No logic changes. Testing and by drh ยท 1 year, 3 months ago
- db467f5 Fix harmless compiler warning in the vfstrace extension. by drh ยท 1 year, 3 months ago
- f8305e4 Improved rebustness to malformed UTF-16 inputs to sqlite3_prepare16_v2(). by drh ยท 1 year, 3 months ago
- 8513eb6 Remove a stray newline. by mistachkin ยท 1 year, 3 months ago
- 0e8cbd5 Improvements to the scope of valueFromFunction(). by drh ยท 1 year, 3 months ago
- 704561f Fix the preupdate hook so that it works when the "old.*" row has a column with a non-NULL default value that was added by ALTER TABLE ADD COLUMN after the current record was created. by dan ยท 1 year, 3 months ago
- ae2a4ac Fix sqlite3-rsync so that it recognizes drive-letters on the front of pathnames by drh ยท 1 year, 3 months ago
- 38b31a9 Fix the preupdate hook so that it works when the "old.*" row has a column with a non-NULL default value that was added by ALTER TABLE ADD COLUMN after the current record was created. by dan ยท 1 year, 3 months ago preupdate-hook-fix
- eaa50b8 Fix harmless static analyzer warning in sqlite3-rsync. by drh ยท 1 year, 3 months ago
- 87dce45 Add assert() statements to some of the sqlite3_bind() APIs that help human by drh ยท 1 year, 3 months ago
- ff60709 In sqlite3-rsync, do not allow the '/' character to appear anywhere in the by drh ยท 1 year, 3 months ago
- 3b204ec Fix a typo in an error message in sqlite3-rsync. by drh ยท 1 year, 3 months ago
- 61e3067 Cleanup the sqlite3-rsync executable as part of "make clean" by drh ยท 1 year, 3 months ago