背景:在迁移 ck 业务到 doris 过程中,寻找 arrayExists https://clickhouse.com/docs/zh/sql-reference/functions/array-functions 函数替代方法。
问题:
select array_exists(x->x>1,[1,2,3])
> [0, 1, 1]
select array_map(x->x>1,[1,2,3])
>[0, 1, 1]
这两个函数 array_exists,array_map 在官网功能中属于同一函数。
但 array_exists 与官网描述不符合。