aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
Commit message (Expand)AuthorAge
...
* Use the sqlite3Realloc() interface internally, rather than the publicdrh2020-05-17
* Enhancements to long-path support in the Win32 VFS.mistachkin2020-05-15
* Improved rounding even on systems with an 8-byte "long double" type.drh2019-05-27
* Improvements to rounding behavior in the round() and printf() functions.drh2019-05-24
* Improved reporting of SQLITE_TOOBIG errors while parsing.drh2019-04-09
* Modify sqlite3_str_finish() and sqlite3VMPrintf() so that they alwaysdrh2019-02-22
* Slight adjustment to the printf formatter large memory allocation detectordrh2019-02-01
* Prevent the printf formatter from doing large memory allocations - largerdrh2019-02-01
* Performance improvement in the parsing of options to %-formats in thedrh2019-02-01
* Make sure the %z optimization for printf() is not invoked if there has beendrh2018-09-13
* Fix a harmless compiler warning.drh2018-05-30
* Enhance the sqlite3_str_new() interface so that it always returns a validdrh2018-05-16
* Fix minor problems with the sqlite3_str interface.drh2018-05-09
* Make the internal dynamic string interface available to extensions usingdrh2018-05-09
* Optimize calls to sqlite3_mprintf("%z...") so that they attempt to appenddrh2018-02-20
* Printing a value of 0 using %c terminates the string.drh2018-02-19
* Test cases and a bug fix on the new unicode handling in %c.drh2018-02-19
* Fix the %c substitution in printf() so that it works with unicode characters.drh2018-02-19
* Make the alternate-form-2 flag ("!") change the meaning of width and precisiondrh2018-02-19
* In the printf() library, measure width and precision in characters ratherdrh2018-02-19
* Make it possible to use OSTRACE for multi-process testing.mistachkin2017-11-09
* Space and size optimization to the printf implementation.drh2017-08-19
* Remove the zBase field from the StrAccum object. Resulting code is slightlydrh2017-08-12
* Avoid the possibility of signed integer overflow with oversized precisionsdrh2017-03-20
* Add the "," flag to printf().drh2017-02-10
* Changes to the printf implementation for better performance.drh2017-01-04
* Avoid passing NULL pointers to memcmp() or memcpy(), even when thedan2016-12-30
* Performance enhancement to sqlite3_snprintf().drh2016-11-25
* Performance improvement in sqlite3StrAccumFinish() for the common case wheredrh2016-11-25
* Renumber internal constants in the printf() implemention for a smalldrh2016-05-05
* Improvements to the way that OOM errors are processed.drh2016-02-05
* Simplification and size reduction to the printf logic. Remove the bFlagsdrh2016-01-30
* A new approach to very large sqlite3_mprintf() strings: Back out thedrh2016-01-04
* Limit the length of sqlite3_mprintf() output to 2^30 bytes, even ifdrh2016-01-04
* Avoid doing comparisons with pointers that might have been previously beendrh2015-12-08
* Changes to avoid obscure, theoretical undefined behavior. This is preventativedrh2015-12-07
* Add the SQLITE_PRINTF_PRECISION_LIMIT compile-time option.drh2015-11-30
* Code simplification in sqlite3ColumnsFromExprList(). Update the %z formatdrh2015-11-14
* Optimizations to the printf formatter.drh2015-09-02
* Use sqlite3XPrintf() instead of sqlite3StrAccumAppend() in a few placesdrh2015-09-02
* Amplify the comment on renderLogMsg() that explains the problems associateddrh2015-07-14
* Fix typo in comment. No changes to code.mistachkin2015-06-08
* Factor out the TreeView parse tree printing module into a separate file.drh2015-06-08
* Simplifications to error message processing. Fix a possible problem in errordrh2015-05-15
* Remove four lines of superfluous code identified by clang scan-build.drh2015-05-05
* Cleanup of the sqlite3StrAccumInit() function. No functionality changes.drh2015-05-02
* Use sqlite3_malloc64() in place of sqlite3_malloc() internally.drh2015-04-29
* Make sure the sqlite3DebugPrintf() function is defined for OSTRACE as well.mistachkin2015-04-16
* Fix a faulty assert() in the sqlite3StrAccumAppend() routine.drh2015-04-15
* Avoid signed integer overflow when converting oversized in-line integerdrh2015-04-07