aboutsummaryrefslogtreecommitdiff
path: root/src/utf.c
Commit message (Expand)AuthorAge
* Work around a bug in clang-11.0.0.drh2020-06-04
* Back out the change from [7fab1393c2b22b1f] that tries to convert invaliddrh2020-05-20
* Convert invalid surrogates to 0xfffd when translating UTF.drh2020-02-17
* Rewrite the (debugging use only) sqlite3VdbeMemPrettyPrint() function to usedrh2020-01-06
* Fix an obsolete comment and other minor issues from code inspection.drh2019-04-14
* Compile cleanly with SQLITE_OMIT_UTF16.drh2017-07-12
* Enhance ability to debug out-of-memory errors.mistachkin2016-02-13
* A different way to clear the subtype on VDBE registers when the value of the ...dan2016-01-30
* Avoid a harmless compiler warning on systems where the byteorder cannotdrh2015-12-24
* Add the Mem.szMalloc element to the Mem object and use it to keep track ofdrh2014-09-18
* Continuing cleanup of memory register memory allocation handling.drh2014-09-16
* The sqlite3VdbeChangeEncoding() routine goes about 3x faster if thedrh2014-08-24
* Fix a comment on the sqlite3Utf8Read() routine. No changes to code.drh2014-06-18
* Change the MEM_Dyn flag so that it means that Mem.xDel exists and must bedrh2014-03-01
* Remove the unused sqlite3Utf8to16() utility function.drh2013-08-07
* Begin adding experimental sqlite_stat4 table. This commit is buggy.dan2013-08-03
* Remove an unnecessary parameter from sqlite3Utf8Read() resulting in a slightdrh2012-09-17
* Begin a branch that experimentally replaces sqlite_stat2 with a new tabledrh2011-08-12
* Use only unsigned values in the implementatin of LIKE and GLOB so thatdrh2011-06-13
* Minor change to sqlite3Utf8Read() to make consistent with READ_UTF8() usage a...shaneh2011-03-24
* Modify the vdbe so that the comparison operator opcodes do not modify the dat...dan2010-03-05
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
* Another attempt at getting the pTail pointer computations correct fordrh2009-10-24
* Check-in [19064d7cea] broke the pTail return on sqlite3_prepare16() whendrh2009-10-24
* Make sure that UTF16 to UTF8 conversions to not read past the end of thedrh2009-10-23
* Warning cleanup from the MSVC compile.shane2009-09-07
* Add the SQLITE_ENABLE_STAT2 macro. If this is not defined at build-time, the ...dan2009-08-19
* First version of sqlite_stat2 (schema forces exactly 10 samples).dan2009-08-17
* Fix a bug in the sqlite3Utf16ByteLen() function so that it computes thedrh2009-04-01
* Remove dead code from the UTF conversion routines. Fix a bug indrh2009-04-01
* Fix compiler warnings from gcc and MSVC; Correct typo in select.c; (CVS 6417)shane2009-03-31
* Work to remove harmless MSVC compiler warnings. (CVS 6013)shane2008-12-10
* Never use strlen(). Use our own internal sqlite3Strlen30() which isdrh2008-12-10
* Get rid of more silly compiler warnings. (CVS 5996)drh2008-12-09
* Some minor name refactoring in where.c. Avoid declaring variables beforedrh2008-12-08
* Prevent buffer overruns when converting malformed UTF16 to UTF8. Ticket #348...drh2008-11-07
* Fix further warnings/compilation errors in test code. (CVS 5558)danielk19772008-08-12
* Fix warnings and a compilation error in test code. (CVS 5556)danielk19772008-08-12
* Use a macro to make sure that the calls to sqlite3Utf8Read() from MemTranslat...danielk19772008-07-29
* Changed copy-paste error in comment. Fixes #3193. (CVS 5323)mihailim2008-06-27
* Changes to the Mem structure to reduce the frequency of freeing and reallocat...danielk19772008-03-28
* Where possible, avoid freeing buffers allocated for vdbe memory cells in case...danielk19772008-02-13
* Add automatic recovery from the pager "error-state". Also add a new error cod...danielk19772007-10-03
* Fixes for compilation/testing when the various OMIT macros are defined. (CVS ...danielk19772007-09-12
* Test sqlite3_bind_zeroblob(). Only include sqlite3Utf8To8 in builds if SQLITE...danielk19772007-09-01
* The sqlite3_value object now carries an sqlite3* pointer to use fordrh2007-08-21
* More work on refactoring of malloc() interfaces. There are still many errors....danielk19772007-08-16
* Half-way through a major refactoring of the memory allocation.drh2007-08-16
* Revise the amalgamation so that all symbols have file scope except thosedrh2007-08-07
* Rework the UTF8 reader logic in order to avoid the use of malloc().drh2007-07-23