mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added test [#CLICKHOUSE-3431].
This commit is contained in:
parent
b00bb5c348
commit
be70e6282e
@ -0,0 +1,6 @@
|
||||
1 Nullable(UInt16) Const(Nullable(UInt16))
|
||||
1 Nullable(UInt16) Nullable(UInt16)
|
||||
1 Nullable(UInt16) Nullable(UInt16)
|
||||
1 Nullable(UInt16) Nullable(UInt16)
|
||||
1 Nullable(UInt16) Nullable(UInt16)
|
||||
1 Nullable(UInt16) Nullable(UInt16)
|
@ -0,0 +1,6 @@
|
||||
SELECT toNullable(0) + 1 AS x, toTypeName(x), toColumnTypeName(x);
|
||||
SELECT toNullable(materialize(0)) + 1 AS x, toTypeName(x), toColumnTypeName(x);
|
||||
SELECT materialize(toNullable(0)) + 1 AS x, toTypeName(x), toColumnTypeName(x);
|
||||
SELECT toNullable(0) + materialize(1) AS x, toTypeName(x), toColumnTypeName(x);
|
||||
SELECT toNullable(materialize(0)) + materialize(1) AS x, toTypeName(x), toColumnTypeName(x);
|
||||
SELECT materialize(toNullable(0)) + materialize(1) AS x, toTypeName(x), toColumnTypeName(x);
|
Loading…
Reference in New Issue
Block a user