Changeset: 93c8186a6fc9 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/93c8186a6fc9
Removed Files:
        sql/test/BugTracker-2013/Tests/check-constraint.Bug-3335.test
Modified Files:
        sql/test/2024/Tests/check.test
        sql/test/BugTracker-2013/Tests/All
Branch: check
Log Message:

remove obsolet missing feature test


diffs (67 lines):

diff --git a/sql/test/2024/Tests/check.test b/sql/test/2024/Tests/check.test
--- a/sql/test/2024/Tests/check.test
+++ b/sql/test/2024/Tests/check.test
@@ -39,3 +39,23 @@ create table baz(j int check (j > (selec
 
 statement error
 create table baz(j int check (j in (select i from foo)))
+
+-- exported from check-constraint.Bug-3335
+
+statement ok
+create table t3335(x integer check(x > 0 and x < 2))
+
+statement ok
+insert into t3335 values(1)
+
+statement error
+insert into t3335 values(0)
+
+statement error
+insert into t3335 values(2)
+
+statement error
+insert into t3335 values(-1)
+
+statement error
+insert into t3335 values(3)
diff --git a/sql/test/BugTracker-2013/Tests/All 
b/sql/test/BugTracker-2013/Tests/All
--- a/sql/test/BugTracker-2013/Tests/All
+++ b/sql/test/BugTracker-2013/Tests/All
@@ -47,7 +47,6 @@ copy-into-compressed.Bug-3351
 HAVE_LIBZ?copy-into-compressed-gz.Bug-3351
 HAVE_LIBBZ2?copy-into-compressed-bz2.Bug-3351
 median.Bug-3352
-check-constraint.Bug-3335
 crash_after_creation_of_unique_key.Bug-3363
 alter_resets_readonly.Bug-3362
 env_errors.Bug-3370
diff --git a/sql/test/BugTracker-2013/Tests/check-constraint.Bug-3335.test 
b/sql/test/BugTracker-2013/Tests/check-constraint.Bug-3335.test
deleted file mode 100644
--- a/sql/test/BugTracker-2013/Tests/check-constraint.Bug-3335.test
+++ /dev/null
@@ -1,24 +0,0 @@
-statement ok
-start transaction
-
-statement error
-create table t3335(x integer check(x > 0 and x < 2))
-
-statement error
-insert into t3335 values(1)
-
-statement error
-insert into t3335 values(0)
-
-statement error
-insert into t3335 values(2)
-
-statement error
-insert into t3335 values(-1)
-
-statement error
-insert into t3335 values(3)
-
-statement ok
-rollback
-
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to