mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
added new test
This commit is contained in:
parent
ec991bd809
commit
a9f1948b20
@ -0,0 +1 @@
|
||||
SimpleAggregateFunction(min, Nullable(UInt8)) 1
|
@ -0,0 +1,7 @@
|
||||
WITH minSimpleState(value) AS c
|
||||
SELECT toTypeName(c), c
|
||||
FROM (
|
||||
SELECT NULL as value
|
||||
UNION ALL
|
||||
SELECT 1 as value
|
||||
);
|
Loading…
Reference in New Issue
Block a user