| -- This file is automatically generated. You should know what you did if you want to edit this |
| -- !array_concat_literals -- |
| [1, 2, 7, 8, 5, 6] |
| |
| -- !array_concat_string_columns -- |
| ["a", "b", "c", "d"] |
| |
| -- !array_concat_empty -- |
| [] |
| |
| -- !array_concat_null -- |
| \N |
| |
| -- !array_concat_null_elements -- |
| [1, null, 3, null, 5, 6] |
| |
| -- !array_concat_type_compatible -- |
| ["1", "2", "3", "a", "b"] |
| |
| -- !array_concat_nested_array -- |
| [[1, 2], [3, 4], [5, 6], [7, 8]] |
| |
| -- !array_concat_map -- |
| [{"k":1}, {"k":2}] |
| |
| -- !array_concat_struct -- |
| [{"name":"Alice", "age":20}, {"name":"Bob", "age":30}] |
| |
| -- !array_cum_sum_int -- |
| [1, 3, 6, 10, 15] |
| |
| -- !array_cum_sum_double -- |
| [1.1, 3.3000000000000003, 6.6, 11, 16.5] |
| |
| -- !array_cum_sum_mixed -- |
| [null, 1, 1, 3, 3, 6] |
| |
| -- !array_cum_sum_empty -- |
| [] |
| |
| -- !array_cum_sum_null -- |
| \N |
| |
| -- !array_cum_sum_single -- |
| [42] |
| |
| -- !array_cum_sum_null_elements -- |
| [null, 1, 1, 4, 4, 9] |
| |
| -- !array_popback_string -- |
| ["apple", "banana", "cherry"] |
| |
| -- !array_popback_null_elements -- |
| [1, null, 3, null] |
| |
| -- !array_popback_single -- |
| [] |
| |
| -- !array_popback_empty -- |
| [] |
| |
| -- !array_popback_null -- |
| \N |
| |
| -- !array_popback_ipv4 -- |
| ["192.168.1.1", "192.168.1.2"] |
| |
| -- !array_popback_nested -- |
| [[1, 2], [3, 4]] |
| |
| -- !array_popback_map -- |
| [{"name":"Alice", "age":"20"}, {"name":"Bob", "age":"30"}] |
| |
| -- !array_popback_struct -- |
| [{"name":"Alice", "age":20}, {"name":"Bob", "age":30}] |
| |
| -- !array_popfront_string -- |
| ["banana", "cherry", "date"] |
| |
| -- !array_popfront_null_elements -- |
| [null, 3, null, 5] |
| |
| -- !array_popfront_single -- |
| [] |
| |
| -- !array_popfront_empty -- |
| [] |
| |
| -- !array_popfront_null -- |
| \N |
| |
| -- !array_popfront_ipv4 -- |
| ["192.168.1.2", "192.168.1.3"] |
| |
| -- !array_popfront_nested -- |
| [[3, 4], [5, 6]] |
| |
| -- !array_popfront_map -- |
| [{"name":"Bob", "age":"30"}, {"name":"Charlie", "age":"40"}] |
| |
| -- !array_popfront_struct -- |
| [{"name":"Bob", "age":30}, {"name":"Charlie", "age":40}] |
| |
| -- !array_exists_lambda_const -- |
| 1 [1, 2, 3, 4, 5] [10, 20, -40, 80, -100] [0, 1, 1] |
| 2 [6, 7, 8] [10, 12, 13] [0, 1, 1] |
| 3 [1] [-100] [0, 1, 1] |
| 4 \N \N [0, 1, 1] |
| |
| -- !array_exists_even -- |
| [1, 2, 3, 4, 5] [10, 20, -40, 80, -100] [0, 1, 0] |
| [6, 7, 8] [10, 12, 13] [0, 1, 0] |
| [1] [-100] [0, 1, 0] |
| \N \N [0, 1, 0] |
| |
| -- !array_exists_abs -- |
| [1, 2, 3, 4, 5] [10, 20, -40, 80, -100] [0, 1, 1] |
| [6, 7, 8] [10, 12, 13] [0, 1, 1] |
| [1] [-100] [0, 1, 1] |
| \N \N [0, 1, 1] |
| |
| -- !array_exists_columns -- |
| [1, 2, 3, 4, 5] [10, 20, -40, 80, -100] [0, 0, 1, 0, 1] |
| [6, 7, 8] [10, 12, 13] [0, 0, 0] |
| [1] [-100] [1] |
| \N \N \N |
| |
| -- !array_exists_column_only -- |
| 1 [1, 2, 3, 4, 5] [10, 20, -40, 80, -100] [1, 1, 1, 1, 1] |
| 2 [6, 7, 8] [10, 12, 13] [1, 1, 1] |
| 3 [1] [-100] [1] |
| 4 \N \N \N |
| |
| -- !array_split_basic -- |
| [[1, 2], [3, 4, 5]] |
| |
| -- !array_split_lambda -- |
| [[1, 2, 3, 4, 5]] |
| |
| -- !array_split_lambda_expression -- |
| [["a", "b"], ["c", "d"]] |
| |
| -- !array_split_date -- |
| [["2020-12-12", "2013-12-12"], ["2015-12-12", null]] |
| |