- 74672ac New SQL function for testing/debugging use only: parseuri(). by drh ยท 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
- 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
- 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
- dac22f6 Add compile-time option -DSQLITE_USE_LONG_DOUBLE=0 to omit all attempts to use by drh ยท 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
- 54fd01c Fix the CLI so that the --bom option only outputs a single BOM, not two. by drh ยท 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
- 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
- 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
- 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
- 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
- 0be2dd9 Get output redirection working again in the CLI. by drh ยท 1 year, 3 months ago
- 57b32ef Add the sqlite3_stdio.h library for Windows console I/O. by drh ยท 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
- 415acd0 In the CLI, when displaying results in a columnar format, take into account by drh ยท 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
- 38f2c5f If the database filename pointer passed to sqlite3_open(), change it 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
- f8305e4 Improved rebustness to malformed UTF-16 inputs to sqlite3_prepare16_v2(). by drh ยท 1 year, 3 months ago
- 0e8cbd5 Improvements to the scope of valueFromFunction(). 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
- 87dce45 Add assert() statements to some of the sqlite3_bind() APIs that help human by drh ยท 1 year, 3 months ago
- dbff02a Enhancements to sqlite_dbpage() so that it accepts INSERT statements that can by drh ยท 1 year, 3 months ago
- 33f0a3e Merge sqlite_dbpage fixes into the sqlite3-rsync branch. by drh ยท 1 year, 3 months ago
- 762946b Bug fix in the enhanced sqlite_dbpage for when truncating two or more by drh ยท 1 year, 3 months ago dbpage
- 165daef Add sha1() functions to the CLI. Fix sha1b() such that it actually returns by drh ยท 1 year, 3 months ago
- 2a4a4ec Disable the debug-use-only functions sqlite3_mutex_held() and by drh ยท 1 year, 3 months ago
- 38b26d8 Add the ability for sqlite_dbpage to truncate the database file by writing by drh ยท 1 year, 3 months ago
- 882aba4 Generalize the sqlite3_dbpage virtual table so that it is able to write by drh ยท 1 year, 3 months ago
- 5600adf Move the vfstrace extension out of src/ over into ext/misc/ where it belongs. by drh ยท 1 year, 3 months ago
- deb6a60 Fix harmless compiler warnings. by drh ยท 1 year, 3 months ago
- c4e84b7 A testcase() macro added to help ensure that the fix to the omit-noop-join by drh ยท 1 year, 3 months ago
- 934e796 Ensure that the WhereInfo.revMask bitmap is adjusted when tables are removed by drh ยท 1 year, 3 months ago
- bb4d2ed Fix a bug in the parsing of some corner-case JSON PATH strings that contain by drh ยท 1 year, 3 months ago
- d281889 Improved error messages on percentile functions. More tests cases for by drh ยท 1 year, 3 months ago ordered-set-agg
- a955ec8 Change the name of the enabling compile-time macro to by drh ยท 1 year, 3 months ago
- b5df31d More internal documentation improvements. by drh ยท 1 year, 3 months ago
- 1c30df3 The WITHIN GROUP (ORDER BY ...) syntax is now a compile-time option: by drh ยท 1 year, 3 months ago
- 7aa01a0 No prepare-time penality for ordered-set aggregates for applications that by drh ยท 1 year, 3 months ago
- df2d14b Add error checking: Do not allow functions other than those in the by drh ยท 1 year, 3 months ago
- a239ece Demonstration of how ordered-set aggregates might be parsed and integrated by drh ยท 1 year, 3 months ago
- 90fa4c7 Enhance the percentile() and median() extension functions so that they can be by drh ยท 1 year, 3 months ago
- 6cb1233 A couple of #defines so that the build work with SQLITE_OMIT_FLOATING_POINT. by drh ยท 1 year, 4 months ago makefile-improvements
- ccd3489 Fix a case where the BTCF_AtLast flag was being left set incorrectly. This was causing obscure window function queries to fail. by dan ยท 1 year, 4 months ago
- c1547d1 Do not allow sqlite3_blob_open() to work on a any table that contains by drh ยท 1 year, 4 months ago
- fcd65ef Merge all the latests trunk enhancements into the win-dupe-crt-fio branch. by drh ยท 1 year, 4 months ago
- 1321ea5 Randomize the name of the attached database used to do VACUUM. by drh ยท 1 year, 4 months ago
- 87ebadb shell.c.in: use eputz/oputz() instead of eputf/oputf() where appropriate to avoid compilation errors in -std=c99 mode (namely wasm builds). by stephan ยท 1 year, 4 months ago
- 306a8dc Fix compiler warnings in the CLI detected by MSVC. by drh ยท 1 year, 4 months ago
- f9eff90 Remove a term from an assert() that is no longer relevant. by drh ยท 1 year, 4 months ago
- 58b08d7 Avoid a stack overflow that could be caused by a recursively defined WINDOW() with a strategically embedded error. by dan ยท 1 year, 4 months ago
- 27095fc Ensure that the WhereLoop.u.btree.pOrderBy field added by the by drh ยท 1 year, 4 months ago
- 7766c99 Eliminate use of strcpy() in shell.c.in to squelch an unwarranted link-time warning on OpenBSD. by stephan ยท 1 year, 4 months ago
- d55ab84 Add the SQLITE_INDEX_SCAN_HEX bit to the sqlite3_index_info.idxFlags bitmask. by drh ยท 1 year, 4 months ago
- be1fdbd Add the new SQLITE_TESTCTRL_OPTGET that retrieves the current optimization by drh ยท 1 year, 4 months ago optimization-onoff
- 9904d82 Improved comments on byte-code subroutine calls to materialize subqueries. by drh ยท 1 year, 4 months ago
- 4cc86b6 Add code comments for a "table-of-contents" and various milestone marks in by drh ยท 1 year, 4 months ago
- 91937a6 Fix a minor typo in a comment. by drh ยท 1 year, 4 months ago
- 01972f5 Improvements to treetrace output for subqueries. Debug code only. by drh ยท 1 year, 4 months ago
- fb7d0c3 De-duplicate some error-output code in shell.c.in as part of tracking down the cause of [forum:5647ca2af1|forum post 5647ca2af1]. by stephan ยท 1 year, 4 months ago
- 8c58fd7 Remove incorrect assert() statements in the SrcItem invariant validator. by drh ยท 1 year, 4 months ago
- 5648d71 Refactor the SrcItem object to move fields associated with subqueries out by drh ยท 1 year, 4 months ago
- a0651b3 Fix a name resolution issue with CTEs. by drh ยท 1 year, 4 months ago srcitem-opt
- bb36d55 Fix minor comment issues. by drh ยท 1 year, 4 months ago
- 0766cbf Remove unreachable code. by drh ยท 1 year, 4 months ago
- 692c160 Tighter checking of access constraints on union members in SrcItem. by drh ยท 1 year, 4 months ago
- ff17623 Fix some stray SrcItem field name fixes. by drh ยท 1 year, 4 months ago
- 27c680c Fix a memory leak so that now all dev tests (including TH3) are passing. by drh ยท 1 year, 4 months ago
- ff4ad29 Memory issues fixes so that mdevtest now passes. by drh ยท 1 year, 4 months ago
- 781163a When the database encoding is UTF-16LE and the GLOB optimization is used, by drh ยท 1 year, 4 months ago
- 6ad4e9f Fix for the UTF-16LE problem reporte by by drh ยท 1 year, 4 months ago
- 1c8ed5f Earlier error detection while processing complex aggregate by drh ยท 1 year, 4 months ago
- 1521ca4 Refactor the SrcItem object so that information about subqueries is stored by drh ยท 1 year, 4 months ago
- aa2258e Attempt to fix date/time calculations for days earlier than 0400-03-01. by drh ยท 1 year, 4 months ago