Changeset: eb0df53401c2 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/eb0df53401c2
Modified Files:
        sql/test/BugTracker-2024/Tests/7552-nested-expression-with-null.test
Branch: Aug2024
Log Message:

Remove if not exists


diffs (17 lines):

diff --git 
a/sql/test/BugTracker-2024/Tests/7552-nested-expression-with-null.test 
b/sql/test/BugTracker-2024/Tests/7552-nested-expression-with-null.test
--- a/sql/test/BugTracker-2024/Tests/7552-nested-expression-with-null.test
+++ b/sql/test/BugTracker-2024/Tests/7552-nested-expression-with-null.test
@@ -1,5 +1,5 @@
 statement ok
-CREATE TABLE  IF NOT EXISTS t0 ( c1 INT )
+CREATE TABLE t0 ( c1 INT )
 
 statement ok
 INSERT INTO t0(c1) VALUES (1)
@@ -17,3 +17,6 @@ NULL
 query I
 SELECT * FROM t0 WHERE ((NULL NOT BETWEEN 1 AND 2)=(t0.c1 NOT IN (t0.c1)))
 ----
+
+statement ok
+DROP TABLE t0
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to