Changeset: e7337f412a27 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=e7337f412a27
Added Files:
sql/test/SQLancer/Tests/sqlancer14.test
Modified Files:
sql/test/SQLancer/Tests/All
Branch: default
Log Message:
Final bug of the week: Illegal argument Requires bats of identical size
diffs (34 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
@@ -11,3 +11,4 @@ sqlancer10
sqlancer11
sqlancer12
sqlancer13
+sqlancer14
diff --git a/sql/test/SQLancer/Tests/sqlancer14.test
b/sql/test/SQLancer/Tests/sqlancer14.test
new file mode 100644
--- /dev/null
+++ b/sql/test/SQLancer/Tests/sqlancer14.test
@@ -0,0 +1,21 @@
+statement ok
+CREATE TABLE t1(c0 INT, c1 STRING)
+
+statement ok
+INSERT INTO t1(c0) VALUES(2), (4)
+
+statement ok
+DELETE FROM t1
+
+statement ok
+INSERT INTO t1(c1, c0) VALUES('a', 6)
+
+statement ok
+ALTER TABLE t1 ADD COLUMN c3 CLOB
+
+statement ok
+UPDATE t1 SET c0 = 0 WHERE t1.c3 LIKE substr(t1.c3, t1.c0)
+
+statement ok
+DROP TABLE t1
+
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list