Added test

This commit is contained in:
Alexey Milovidov 2020-01-18 16:06:19 +03:00
parent 71763c9ab6
commit eeea89e0a4
2 changed files with 3 additions and 0 deletions

View File

@ -14,3 +14,4 @@
2
\N
-42
1

View File

@ -7,3 +7,5 @@ SELECT ifNotFinite(-1 / 0, 2);
SELECT ifNotFinite(log(0), NULL);
SELECT ifNotFinite(sqrt(-1), -42);
SELECT ifNotFinite(1234567890123456789, -1234567890123456789); -- { serverError 386 }
SELECT ifNotFinite(NULL, 1);