Add other fuzzer tests

This commit is contained in:
Salvatore Mesoraca 2023-10-23 13:02:09 +02:00
parent 6b7b3a641f
commit 4cf17dc50a
No known key found for this signature in database
GPG Key ID: 0567E50A25403074
2 changed files with 10 additions and 0 deletions

View File

@ -35,3 +35,11 @@ fuzzer issue
\N
\N
\N
\N
\N
\N
\N
\N
\N
\N
\N

View File

@ -26,3 +26,5 @@ select IPv6StringToNum(number % 2 ? '0000:0000:0000:0000:0000:0000:0000:0000' :
select 'fuzzer issue';
SELECT CAST(if(number % 2, 'truetrue', NULL), 'Nullable(Bool)') FROM numbers(2);
SELECT CAST(if(number % 2, 'falsefalse', NULL), 'Nullable(Bool)') FROM numbers(2);
SELECT accurateCastOrNull(if(number % 2, NULL, 'truex'), 'Bool') FROM numbers(4);
SELECT accurateCastOrNull(if(number % 2, 'truex', NULL), 'Bool') FROM numbers(4);