ClickHouse/tests/queries/0_stateless/02206_array_starts_ends_with.sql

14 lines
362 B
MySQL
Raw Normal View History

2022-02-06 14:45:28 +00:00
select startsWith([], []);
select startsWith([1], []);
select startsWith([], [1]);
select startsWith([NULL], [NULL]);
select startsWith([NULL], []);
select startsWith([], [NULL]);
select startsWith([1, 2, 3, 4], [1, 2, 3]);
select startsWith([1, 2, 3, 4], [1, 2, 4]);
select startsWith(['a', 'b', 'c'], ['a', 'b']);
select startsWith(['a', 'b', 'c'], ['b']);