diff options
author | drh <> | 2023-12-16 15:48:42 +0000 |
---|---|---|
committer | drh <> | 2023-12-16 15:48:42 +0000 |
commit | 13264418baadf2743c5bddbe5a1de272a7af42e0 (patch) | |
tree | 36f4b38f4ab891beb8ff7ffb07fdd0a134ef8c0f /src | |
parent | 5f3dd8668c21c1689238e3f340cc6b067805680c (diff) | |
download | sqlite-13264418baadf2743c5bddbe5a1de272a7af42e0.tar.gz sqlite-13264418baadf2743c5bddbe5a1de272a7af42e0.zip |
Enable SQLITE_STRICT_SUBTYPE for default builds of the shell, fuzzcheck,
and testfixture.
FossilOrigin-Name: 5a0c517ed7e46c0f8a3db752cf5b9f8010c60f35084606abe9e7c1c4f993b4a7
Diffstat (limited to 'src')
-rw-r--r-- | src/test_func.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test_func.c b/src/test_func.c index fa5243826..80df48828 100644 --- a/src/test_func.c +++ b/src/test_func.c @@ -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; |