Report tables that are directly referenced by a query in QueryCompletedEvent. (#7330)
Report columns that are the target of INSERT or UPDATE queries in QueryCompletedEvent. This includes
information about which input columns they are derived from. (#7425, #7465)
Rename optimizer.plan-with-table-node-partitioning config property to optimizer.use-table-scan-node-partitioning. (#7257)
Improve query parallelism when table bucket count is small compared to number of nodes.
This optimization is now triggered automatically when the ratio between table buckets and
possible table scan tasks exceeds or is equal to optimizer.table-scan-node-partitioning-min-bucket-to-task-ratio. (#7257)
Disallow inserting data into tables that have row filters. (#7346)
Improve performance of queries that can benefit from both Cost-based optimizations and join pushdown
by giving precedence to cost-based optimizations. (#7331)
Fix inconsistent behavior for to_unixtime() with values of type timestamp(p). (#7450)
Add assumeLiteralNamesInMetadataCallsForNonConformingClients parameter for use as a workaround when
applications do not properly escape schema or table names in calls to DatabaseMetaData methods. (#7438)