1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-21 13:38:01 +03:00

Enable SQLITE_STRICT_SUBTYPE for default builds of the shell, fuzzcheck,

and testfixture.

FossilOrigin-Name: 5a0c517ed7e46c0f8a3db752cf5b9f8010c60f35084606abe9e7c1c4f993b4a7
This commit is contained in:
drh
2023-12-16 15:48:42 +00:00
parent 5f3dd8668c
commit 13264418ba
6 changed files with 20 additions and 12 deletions

View File

@@ -694,7 +694,8 @@ static int registerTestFunctions(
{ "test_extract", 2, SQLITE_UTF8, test_extract},
{ "test_zeroblob", 1, SQLITE_UTF8|SQLITE_DETERMINISTIC, test_zeroblob},
{ "test_getsubtype", 1, SQLITE_UTF8, test_getsubtype},
{ "test_setsubtype", 2, SQLITE_UTF8, test_setsubtype},
{ "test_setsubtype", 2, SQLITE_UTF8|SQLITE_RESULT_SUBTYPE,
test_setsubtype},
{ "test_frombind", -1, SQLITE_UTF8, test_frombind},
};
int i;