Changeset: c106d08c7b60 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/c106d08c7b60
Added Files:
        sql/test/SQLancer/Tests/sqlancer23.test
Modified Files:
        sql/test/SQLancer/Tests/All
Branch: default
Log Message:

Next issue, name conflict from identical relation names in the query


diffs (26 lines):

diff --git a/sql/test/SQLancer/Tests/All b/sql/test/SQLancer/Tests/All
--- a/sql/test/SQLancer/Tests/All
+++ b/sql/test/SQLancer/Tests/All
@@ -20,3 +20,4 @@ sqlancer19
 sqlancer20
 KNOWNFAIL?sqlancer21
 sqlancer22
+sqlancer23
diff --git a/sql/test/SQLancer/Tests/sqlancer23.test 
b/sql/test/SQLancer/Tests/sqlancer23.test
new file mode 100644
--- /dev/null
+++ b/sql/test/SQLancer/Tests/sqlancer23.test
@@ -0,0 +1,13 @@
+statement ok
+START TRANSACTION
+
+statement ok
+CREATE TABLE t0 (c0 INT)
+
+query I nosort
+SELECT 1 FROM (SELECT 1 FROM t0 JOIN (SELECT EXISTS (SELECT 1)) x(x) ON x.x = 
(VALUES (x.x))) vx(vx)
+JOIN (VALUES (1, 2)) x(x,y) ON vx = ANY(SELECT vx)
+----
+
+statement ok
+ROLLBACK
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to