Skip to content

Commit 4afe724

Browse files
committed
fix test
1 parent f62e116 commit 4afe724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/queries/0_stateless/03305_compressed_memory_eng_crash_reading_subcolumn.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ DROP TABLE IF EXISTS t0;
33
CREATE TABLE t0 (c0 Nullable(Int)) ENGINE = Memory() SETTINGS compress = 1;
44
INSERT INTO TABLE t0 (c0) VALUES (1);
55

6-
SELECT t0.c0.null FROM t0 FORMAT Null;
6+
SELECT t0.c0.null FROM t0 FORMAT Null SETTINGS enable_analyzer = 1;
77

88
DROP TABLE t0;

0 commit comments

Comments
 (0)