1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Disable a test case requiring generate_series when virtual tables are not

available.

FossilOrigin-Name: ee86e2f4c5999a090a5d2fe8251107cf55e621a6b988f315eb82f462cc1e377d
This commit is contained in:
drh
2021-03-18 18:27:37 +00:00
parent ca237a8b7b
commit f09a1794d8
3 changed files with 10 additions and 8 deletions

View File

@@ -425,6 +425,7 @@ do_execsql_test 9.1 {
SELECT * FROM xyz UNION ALL SELECT * FROM xyz
);
} {1234 1234 1234 1234 1234 1234}
ifcapable vtab {
load_static_extension db series
do_execsql_test 9.2 {
WITH
@@ -530,5 +531,6 @@ do_execsql_test 9.2 {
)
SELECT * FROM radygrid , ypos;
} {}
} ;# end ifcapable vtab
finish_test