Changeset: 90d8022c92aa for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/90d8022c92aa
Modified Files:
sql/test/dict/Tests/dict01.test
Branch: Jan2022
Log Message:
Another bind typing issue
diffs (25 lines):
diff --git a/sql/test/dict/Tests/dict01.test b/sql/test/dict/Tests/dict01.test
--- a/sql/test/dict/Tests/dict01.test
+++ b/sql/test/dict/Tests/dict01.test
@@ -456,6 +456,21 @@ statement ok
DROP TABLE t0
statement ok
+CREATE TABLE t0(c0 BIGINT PRIMARY KEY)
+
+statement ok
+CALL "sys"."dict_compress"('sys','t0','c0')
+
+statement ok rowcount 2
+INSERT INTO t0(c0) VALUES(15), (-5)
+
+statement ok rowcount 0
+MERGE INTO t0 USING (SELECT 133 WHERE FALSE) AS x(c0) ON (x.c0 < 1) WHEN
MATCHED THEN DELETE WHEN NOT MATCHED THEN INSERT (c0) VALUES (29)
+
+statement ok
+DROP TABLE t0
+
+statement ok
START TRANSACTION
statement ok
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list