Changeset: a534cc8ee2d8 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/a534cc8ee2d8
Added Files:
sql/test/BugTracker-2024/Tests/7553-join-on-startswith-crash.test
Modified Files:
sql/test/BugTracker-2024/Tests/All
Branch: Aug2024
Log Message:
Add test for issue #7553
diffs (29 lines):
diff --git a/sql/test/BugTracker-2024/Tests/7553-join-on-startswith-crash.test
b/sql/test/BugTracker-2024/Tests/7553-join-on-startswith-crash.test
new file mode 100644
--- /dev/null
+++ b/sql/test/BugTracker-2024/Tests/7553-join-on-startswith-crash.test
@@ -0,0 +1,16 @@
+statement ok
+CREATE TABLE t0 (c0 VARCHAR(500) , c1 INT )
+
+statement ok
+CREATE TABLE t1 (c0 BOOLEAN )
+
+skipif knownfail
+query I
+SELECT * FROM t1 INNER JOIN t0 ON STARTSWITH(((t0.c1)>=(t0.c0)), t1.c0, ('a'
NOT LIKE(t0.c1)))
+----
+
+statement ok
+DROP TABLE t1
+
+statement ok
+DROP TABLE t0
diff --git a/sql/test/BugTracker-2024/Tests/All
b/sql/test/BugTracker-2024/Tests/All
--- a/sql/test/BugTracker-2024/Tests/All
+++ b/sql/test/BugTracker-2024/Tests/All
@@ -76,3 +76,4 @@ 7545-groupby_on_index_col
7547-drop-login-trigger-crash
7550-select-statistics-auth
7552-nested-expression-with-null
+7553-join-on-startswith-crash
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]