Changeset: 95654702b625 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/95654702b625
Modified Files:
        sql/test/SQLancer/Tests/sqlancer18.test
Branch: Jan2022
Log Message:

I missed a savepoint


diffs (19 lines):

diff --git a/sql/test/SQLancer/Tests/sqlancer18.test 
b/sql/test/SQLancer/Tests/sqlancer18.test
--- a/sql/test/SQLancer/Tests/sqlancer18.test
+++ b/sql/test/SQLancer/Tests/sqlancer18.test
@@ -671,9 +671,15 @@ create or replace view v101(vc0) as (sel
 statement ok
 create or replace view v102(vc0) as (select 1 from v101)
 
+statement ok
+savepoint sp1
+
 statement error SELECT: aggregate functions not allowed in WHERE clause
 SELECT 1 FROM v100 WHERE (SELECT 1 HAVING count(v100.vc0 + (SELECT 1 FROM 
v104)))
 
+statement ok
+rollback to savepoint sp1
+
 statement error SELECT: aggregate functions not allowed in WHERE clause
 SELECT 1 FROM v100 AS vx WHERE vx.vc0 = ANY(SELECT 1 FROM v100 HAVING 
count(vx.vc0 = vx.vc0 AND (SELECT TRUE FROM v102)))
 
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to