mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 18:02:24 +00:00
8 lines
543 B
SQL
8 lines
543 B
SQL
select * from format('RowBinaryWithDefaults', 'x UInt32 default 42', x'01');
|
|
select * from format('RowBinaryWithDefaults', 'x UInt32 default 42', x'0001000000');
|
|
select * from format('RowBinaryWithDefaults', 'x Nullable(UInt32) default 42', x'01');
|
|
select * from format('RowBinaryWithDefaults', 'x Nullable(UInt32) default 42', x'000001000000');
|
|
select * from format('RowBinaryWithDefaults', 'x Nullable(UInt32) default 42', x'0001');
|
|
select * from format('RowBinaryWithDefaults', 'x Array(Tuple(UInt32, UInt32)) default [(42, 42)]', x'01');
|
|
|