Update test

This commit is contained in:
Dmitry Novik 2024-02-02 19:30:16 +01:00 committed by GitHub
parent 76899294f5
commit a3d51cae68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,8 @@ CREATE TABLE test
x Nullable(Tuple(UInt64, UInt64))
)
ENGINE = MergeTree()
ORDER BY x;
ORDER BY x
SETTINGS allow_nullable_key = 1;
INSERT INTO test VALUES (NULL), (0, 0);