Guy Cohen
Guy Cohen
probably it relates to https://github.com/trinodb/trino/pull/21800
It’s definitely should be set to false by default. I know about several use cases that directly query the partition tables when the partition pruning is not working as expected.
For example, Postgres might pick wrong index when the partitioned column is not indexed or search all partitions when stalled stats exist
I've also encountered similar issue with `timestamp[]`: ``` create table test_ts(ts_col timestamp, ts_arr_col timestamp[]); insert into test_ts values ( '1970-01-01 00:12:34.567'::timestamp, array['1970-01-01 00:12:34.567'::timestamp]); select * from public.test_ts; ts_col | ts_arr_col...