mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
7 lines
493 B
MySQL
7 lines
493 B
MySQL
|
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);
|