This commit is contained in:
2026-06-24 13:47:14 +02:00
commit fd930e15cb
2377 changed files with 1213931 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#! /bin/bash
if [ -z "$TEST_CASE_LOCATION" ]; then
SQL_FILE="query.sql"
else
SQL_FILE="$TEST_CASE_LOCATION"
fi
out1=$(sqlite3-3.26.0 < $SQL_FILE 2>&1)
if sqlite3-3.39.4 < $SQL_FILE 2>&1 | grep -q "datatype mismatch"; then
if sqlite3-3.26.0 < $SQL_FILE 2>&1 | grep -q "datatype mismatch"; then
exit 1
else
exit 0
fi
fi
exit 1