Changeset: a43148f59da7 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/a43148f59da7 Modified Files: sql/test/SQLancer/Tests/sqlancer18.test Branch: default Log Message:
Next subquery crash diffs (22 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 @@ -320,3 +320,18 @@ SELECT max((SELECT (SELECT rt2.c1 FROM t statement ok ROLLBACK +statement ok +START TRANSACTION + +statement ok +create table t1 (c0 int) + +statement ok rowcount 4 +insert into t1 values (1),(2),(3),(NULL) + +statement error GDK reported error: mergejoin: more than one match +select 1 from t1 where exists (select min((select t2.c0 from t1)) from t1 as t2) + +statement ok +ROLLBACK + _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
