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
+4
View File
@@ -0,0 +1,4 @@
CREATE TABLE biq (ype , ucn , ynu );
CREATE VIEW zua AS SELECT ype, ucn, AVG(ynu) FROM biq WHERE ucn BETWEEN 0 AND 1363441146 ;;
INSERT OR REPLACE INTO biq (ype, ucn, ynu) VALUES (CURRENT_TIMESTAMP , 1 , 1 );
SELECT ucn, ype FROM biq WHERE biq.ype / 709620288 ;
+3
View File
@@ -0,0 +1,3 @@
CREATE TABLE biq (ype , ucn , ynu );
INSERT INTO biq VALUES (CURRENT_TIMESTAMP , 1 , 1 );
SELECT ype FROM biq WHERE ype / 709620288
+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 | sort)
ret1=$?
out2=$(sqlite3-3.39.4 < $SQL_FILE | sort)
ret2=$?
if [ "$ret1" = "$ret2" ]; then
test "$out1" = "$out2"
exit $(( ! $? ))
else
exit 1
fi