# name: test/issues/rigger/test_619.test # description: Issue 619 # group: [rigger] statement ok PRAGMA enable_verification # Query on altered table results in a segmentation fault statement ok CREATE TABLE t0(c0 INT UNIQUE, c1 DATE); statement ok ALTER TABLE t0 ALTER c1 TYPE INT; statement ok INSERT INTO t0(c0) VALUES(-1); query II SELECT * FROM t0 WHERE c0 < 0; ---- -1 NULL