This commit is contained in:
2026-06-24 13:47:14 +02:00
commit fd930e15cb
2377 changed files with 1213931 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
DIFF
+3
View File
@@ -0,0 +1,3 @@
CREATE TABLE F (p BOOLEAN NOT NULL NULL NOT NULL, i BOOLEAN);
INSERT INTO F SELECT * FROM (VALUES ((NOT false), false), (NULL, (NOT (NOT true)))) AS L WHERE (((+(+(-((+110) / (+((-(-150)) * ((247 * (91 * (-47))) + (-86)))))))) = ((((+(+(24 / (+((+89) * (+58)))))) * (-(-((193 + 223) / (-(222 / 219)))))) * (34 * 70)) * (+(+((((+(+(-202))) / (+52)) - (-(228 + (-104)))) * (-24)))))) = (false <> (66 <> 8)));
+2
View File
@@ -0,0 +1,2 @@
CREATE TABLE F ( BOOLEAN NOT NULL, i );
INSERT INTO F SELECT * FROM (VALUES (( false), false), (NULL, ( ( true)))) WHERE ((( ( ( (( 110) / ( (( ( 150)) )))))) = (((( ( (24 / ( (( 89) ))))) ) ) )) = (false <> ( 8)))
+17
View File
@@ -0,0 +1,17 @@
#! /bin/bash
if [ -z "$TEST_CASE_LOCATION" ]; then
SQL_FILE="query.sql"
else
SQL_FILE="$TEST_CASE_LOCATION"
fi
if sqlite3-3.39.4 < $SQL_FILE 2>&1 | grep -q "NOT NULL constraint failed"; then
if sqlite3-3.26.0 < $SQL_FILE 2>&1 | grep -q "NOT NULL constraint failed"; then
exit 1
else
exit 0
fi
fi
exit 1