added new test

This commit is contained in:
priera 2023-09-26 17:51:13 +02:00
parent ec991bd809
commit a9f1948b20
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1 @@
SimpleAggregateFunction(min, Nullable(UInt8)) 1

View File

@ -0,0 +1,7 @@
WITH minSimpleState(value) AS c
SELECT toTypeName(c), c
FROM (
SELECT NULL as value
UNION ALL
SELECT 1 as value
);