Changeset: 46c48761538c for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/46c48761538c
Modified Files:
        sql/test/BugTracker-2024/Tests/7544-startswith-bug.test
Branch: strimps_v3
Log Message:

Revert test case


diffs (51 lines):

diff --git a/sql/test/BugTracker-2024/Tests/7544-startswith-bug.test 
b/sql/test/BugTracker-2024/Tests/7544-startswith-bug.test
--- a/sql/test/BugTracker-2024/Tests/7544-startswith-bug.test
+++ b/sql/test/BugTracker-2024/Tests/7544-startswith-bug.test
@@ -24,8 +24,14 @@ SELECT STARTSWITH(t0.c0, 'a', t1.c1) FRO
 1
 1
 
-statement error HY009!Invalid case ignore. Single value expected
+-- GDK reported error: BATproject2: does not match always
+query TI nosort
 SELECT * FROM t0, t1 WHERE STARTSWITH(t0.c0, 'a', t1.c1)
+----
+a
+1
+a
+1
 
 query I nosort
 SELECT ENDSWITH(t0.c0, 'a', t1.c1) FROM t0, t1
@@ -33,9 +39,14 @@ SELECT ENDSWITH(t0.c0, 'a', t1.c1) FROM 
 1
 1
 
-statement error HY009!Invalid case ignore. Single value expected
+-- GDK reported error: BATproject2: does not match always
+query TI nosort
 SELECT * FROM t0, t1 WHERE ENDSWITH(t0.c0, 'a', t1.c1)
 ----
+a
+1
+a
+1
 
 query I nosort
 SELECT CONTAINS(t0.c0, 'a', t1.c1) FROM t0, t1
@@ -43,8 +54,14 @@ SELECT CONTAINS(t0.c0, 'a', t1.c1) FROM 
 1
 1
 
-statement error HY009!Invalid case ignore. Single value expected
+-- GDK reported error: BATproject2: does not match always
+query TI nosort
 SELECT * FROM t0, t1 WHERE CONTAINS(t0.c0, 'a', t1.c1)
+----
+a
+1
+a
+1
 
 statement ok
 DROP TABLE t0
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to