mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix incorrect test name labels in the select1.test script.
FossilOrigin-Name: 179c79ea0deb0f5adaa8d369cfcad06d959a9cc18a8a41e01ef013b2d90acd61
This commit is contained in:
@ -1167,17 +1167,17 @@ do_execsql_test select1-18.4 {
|
||||
|
||||
# 2019-12-17 gramfuzz find
|
||||
#
|
||||
do_execsql_test select-19.10 {
|
||||
do_execsql_test select1-19.10 {
|
||||
DROP TABLE IF EXISTS t1;
|
||||
CREATE TABLE t1(x);
|
||||
} {}
|
||||
do_catchsql_test select-19.20 {
|
||||
do_catchsql_test select1-19.20 {
|
||||
INSERT INTO t1
|
||||
SELECT 1,2,3,4,5,6,7
|
||||
UNION ALL SELECT 1,2,3,4,5,6,7
|
||||
ORDER BY 1;
|
||||
} {1 {table t1 has 1 columns but 7 values were supplied}}
|
||||
do_catchsql_test select-19.21 {
|
||||
do_catchsql_test select1-19.21 {
|
||||
INSERT INTO t1
|
||||
SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
|
||||
UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15
|
||||
@ -1187,7 +1187,7 @@ do_catchsql_test select-19.21 {
|
||||
# 2020-01-01 Found by Yongheng's fuzzer
|
||||
#
|
||||
reset_db
|
||||
do_execsql_test select-20.10 {
|
||||
do_execsql_test select1-20.10 {
|
||||
CREATE TABLE t1 (
|
||||
a INTEGER PRIMARY KEY,
|
||||
b AS('Y') UNIQUE
|
||||
@ -1197,13 +1197,13 @@ do_execsql_test select-20.10 {
|
||||
WHERE ((SELECT t1.a FROM t1 AS x GROUP BY b) AND b=0)
|
||||
OR a = 10;
|
||||
} {10 Y}
|
||||
do_execsql_test select-20.20 {
|
||||
do_execsql_test select1-20.20 {
|
||||
SELECT ifnull(a, max((SELECT 123))), count(a) FROM t1 ;
|
||||
} {10 1}
|
||||
|
||||
# 2020-10-02 dbsqlfuzz find
|
||||
reset_db
|
||||
do_execsql_test select-21.1 {
|
||||
do_execsql_test select1-21.1 {
|
||||
CREATE TABLE t1(a IMTEGES PRIMARY KEY,R);
|
||||
CREATE TABLE t2(x UNIQUE);
|
||||
CREATE VIEW v1a(z,y) AS SELECT x IS NULL, x FROM t2;
|
||||
|
Reference in New Issue
Block a user