should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
# name: test/issues/rigger/test_526.test
# description: Issue 526
# group: [rigger]
statement ok
PRAGMA enable_verification
# Query that uses the CONCAT() function and OR expression crashes
# FIXME: #398
statement ok
CREATE TABLE t0(c0 REAL);
statement ok
CREATE TABLE t1(c0 INT2);
statement ok
CREATE TABLE t2(c0 INT);
statement ok
INSERT INTO t0 VALUES (-1);
statement ok
INSERT INTO t1 VALUES (0);
statement ok
INSERT INTO t2 VALUES (0), (0);
query IIR
SELECT * FROM t1, t2, t0 WHERE CONCAT(t1.c0) OR t0.c0;
----
0 0 -1.000000
0 0 -1.000000