ClickHouse/tests/queries/0_stateless/02812_pointwise_array_operations.sql

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

6 lines
167 B
MySQL
Raw Normal View History

2023-07-27 12:48:36 +00:00
SELECT (materialize([1,1]) + materialize([1,4]));
SELECT ([1,2] + [1,4]);
SELECT ([2.5, 1, 3, 10.1] + [2, 4, 9, 0]);
SELECT ([(1,3), (2,9)] + [(10.1, 2.4), (4,12)]);
2023-07-26 14:57:32 +00:00