aboutsummaryrefslogtreecommitdiff
path: root/test/func.test
Commit message (Expand)AuthorAge
* Remove unnecessary "www." prefixes on domain names in URLs.drh2025-04-10
* Fix additional integer overflow problems in the substr() function.drh2024-12-19
* Fix possible integer oveflow in the second and third argument to substr().drh2024-12-18
* Avoid 32-bit roundoff error on the second argument to round().drh2024-12-18
* Increase the maximum number of arguments on an SQL function to 1000 with thedrh2024-12-12
* Remove a few more traces of long double from the code.drh2024-10-02
* Adjustments to the test cases for the previous check-in to make themdrh2024-03-19
* Fix another problem from [c63e26e705f5e967] involving infinities and thedrh2024-03-19
* The quote() SQL function should convert +Inf into 9.0e+999 and -Inf intodrh2024-02-26
* Ensure that the replace() SQL function always returns a TEXT value evendrh2024-01-20
* Add string_agg(X,Y) as an alias for group_concat(X,Y), for compatibilitydrh2023-10-20
* Fix the AVG() and TOTAL() functions (after the SUM() fix of [77d3dcd283595c52])drh2023-08-30
* Fix an issue with infinity handling by the SUM() function that goes backdrh2023-08-28
* Fix octet_length() test cases so that they work when the database encodingdrh2023-07-06
* Completely unwind the enhanced precision sum() from [a915f15a916af698] sodrh2023-06-30
* Make the sum() function less precise and slower in order to avoiddrh2023-06-30
* Simple test cases for the enhanced SUM() function.drh2023-06-26
* basic test cases for octet_length().drh2023-06-22
* Fix test cases so that they all still work even with -DSQLITE_DQS=0.drh2022-01-16
* Add new binary operators "->" and "->>" to the parser that evaluate todrh2022-01-07
* Change things so that SQLITE_OMIT_VIRTUALTABLE implies SQLITE_OMIT_ALTER_TABLE.dan2021-10-01
* Prevent an infinite loop in the trim() SQL function if the second argumentdrh2021-06-15
* Rename sqlite3ExprCodeAtInit() to sqlite3ExprCodeRunJustOnce().drh2020-03-11
* Fix to the register validity tracking logic in debug builds. No impactdrh2020-01-10
* Check for whether or not it is safe to use non-innocuous functions as thedrh2020-01-08
* Modify three test cases so that they work even with unusual versions of thedrh2019-11-15
* Provide the SQLITE_DIRECTONLY flag for app-defined functions that prohibitsdrh2019-08-15
* Fix the round() SQL function so that it handles infinities correctly.drh2019-05-10
* Initial implementation of the sqlite3_value_frombind() interface.drh2019-03-29
* Improve the performance of the built-in REPLACE() function in cases wheredrh2018-02-09
* Make sure the group_concat() function returns an empty string, not a NULL,drh2014-05-07
* Only use the direct-overflow-read optimization if all data from the overflow ...dan2014-03-20
* Fix a bug causing "SELECT char()" to return SQLITE_NOMEM.dan2014-03-08
* Improved comments on the OP_Column changes. Optimize out loading of overflowdrh2013-11-20
* Additional test cases and requirements marks for the unlikely(),drh2013-10-11
* Fixes to test numbering.mistachkin2013-07-19
* Ensure that all auxiliary data registered by calls to sqlite3_set_auxdata() i...dan2013-07-18
* Refactoring the mmap interface. The controlling pragma is now "mmap_size"drh2013-04-15
* Previous check-in accidently left mmap turned off by default. This checkindrh2013-03-26
* Add the sqlite3_io_methods.xMremap() method to the VFS interface. Also "PRAGM...dan2013-03-19
* Fix the char() function so that it works even if SQLITE_OMIT_UTF16 is defined.drh2013-03-07
* Skip tests that require UTF-16 support when compiled with SQLITE_OMIT_UTF16.mistachkin2013-03-07
* Prevent Tcl file encoding issues in the tests for the unicode() and char() fu...mistachkin2013-02-26
* Add new SQL functions unicode() and char().drh2013-02-25
|\
| * Two new SQL functions: unicode() and char().drh2013-02-22
|/
* Fix an incorrect testcase for the round() function. All tests are passingdrh2012-06-19
* Test cases for length() of a large blob in an aggregate query.drh2012-03-28
* Evaluate typeof(X) and length(Y) where X is any column and Y is a blob columndrh2012-03-28
* More rounding tests.shaneh2010-02-17
* Added additional rounding tests.shaneh2010-02-16