Introduce system.metadata.materialized_view_properties table for listing available materialized view properties. (#7615)
Add support for limiting the maximum planning time via the query.max-planning-time configuration property. (#7213)
Allow redirecting clients to an alternative location to fetch query information. This can be configured
via the query.info-url-template configuration property. (#7678)
Allow cancellation of queries during planning phase. (#7213)
Improve performance of ORDER BY ... LIMIT queries over a LEFT JOIN. (#7028)
Improve performance of queries with predicates on boolean columns. (#7263)
Improve planning time for queries with large IN predicates. (#7556)
Improve performance of queries that contain joins on varchar keys of different length. (#7644)
Improve performance of queries when late materialization is enabled. (#7695)
Reduce coordinator network overhead when scheduling queries. (#7351)
Fix possible deadlock for JOIN queries when spilling is enabled. (#7455)
Fix incorrect results for queries containing full outer join with an input that is known to produce one row. (#7629)
Fix failure when quantified comparison expressions contain scalar subqueries. (#7792)
Require that ConnectorMaterializedViewDefinition provides a view owner. (#7489)
Add Connector#getMaterializedViewPropertyManager for specifying materialized view properties. (#7615)
Add ConnectorAccessControl.checkCanCreateMaterializedView() and
ConnectorAccessControl.checkCanDropMaterializedView() for authorizing
creation and removal of materialized views. (#7645)
Allow a materialized view to return a storage table in a different catalog or schema. (#7638)
Add ConnectorAccessControl.checkCanRefreshMaterializedView() for authorizing
refresh of materialized views. (#7707)