ClickHouse/tests/queries/0_stateless/02307_join_get_array_null.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
218 B
MySQL
Raw Normal View History

2022-05-30 13:01:27 +00:00
drop table if exists id_val;
create table id_val(id Int32, val Array(Int32)) engine Join(ANY, LEFT, id) settings join_use_nulls = 1;
select joinGet(id_val, 'val', toInt32(number)) from numbers(1);
drop table id_val;