Added another test just in case

This commit is contained in:
Alexey Milovidov 2020-07-06 05:57:58 +03:00
parent eb2cffab37
commit 4508876008
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,3 @@
2 0 leave
0 1 delete
\N \N leave

View File

@ -0,0 +1,5 @@
SELECT
UserID,
UserID = 0,
if(UserID = 0, 'delete', 'leave')
FROM VALUES('UserID Nullable(UInt8)', (2), (0), (NULL));