From 4c69e9cf83f98b649e64021ae56fa543e856f50d Mon Sep 17 00:00:00 2001 From: aykutbozkurt Date: Thu, 13 Jul 2023 12:14:09 +0300 Subject: [PATCH] reorder + addressed Onur's comment --- CHANGELOG.md | 53 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 384c4a4de6a..d551f75e20d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,41 +12,22 @@ * Supports MERGE command across non-colocated distributed tables/subqueries, reference tables and joins on non-distribution columns (#6927) -* Fixes wrong result when using `NOT MATCHED` with MERGE command (#6943) - -* Disallows MERGE with filters that prune down to zero shards (#6946) - * Drops PG13 Support (#7002, #7007) * Changes default rebalance strategy to by_disk_size (#7033) * Changes by_disk_size rebalance strategy to have a base size (#7035) -* Fixes shard size bug with too many shards (#7018) - * Improves citus_tables view performance (#7018) * Improves tenant monitoring performance (#6868) -* Adds CPU usage to citus_stat_tenants (#6844) - -* Optimizes pushdown planner on memory and cpu (#6945) - -* Fixes a bug related to reference tables for CDC (#7025) - * Introduces the GUC `citus.stat_tenants_untracked_sample_rate` for sampling in tenant monitoring (#7026) -* Makes sure to take `shouldhaveshards` setting into account for a node when - planning rebalance steps (#6887) - -* Changes citus_shard_sizes view's table_name column to shard_id (#7003) - -* Fixes a bug related to type casts with text/varchar (#6391) - -* Fixes create schema authorization bug (#7015) +* Adds CPU usage to citus_stat_tenants (#6844) -* Supports custom cast from / to timestamptz in time partition management UDFs (#6923) +* Propagates `ALTER SCHEMA .. OWNER TO ..` commands to worker (#6987) * Allows DROP CONSTRAINT in command string with other commands (#7012) @@ -54,10 +35,11 @@ a distributed table with the limitation of not being able perform DMLs on identity columns from worker nodes (#7008) -* Propagate `ALTER SCHEMA .. OWNER TO ..` commands to worker (#6987) +* Supports custom cast from / to timestamptz in time partition management UDFs (#6923) -* Fixes an error when creating a FOREIGN KEY without a name referencing a schema - qualified table (#6986) +* Optimizes pushdown planner on memory and cpu (#6945) + +* Changes citus_shard_sizes view's table_name column to shard_id (#7003) * The GUC search_path is now reported when it is updated (#6983) @@ -65,14 +47,31 @@ ensure generating a consistent distributed plan for the queries that reference non-colocated distributed tables (#6909) -* Fixes a bug related to propagation of schemas when pg_dist_node is empty (#6900) +* Disallows MERGE with filters that prune down to zero shards (#6946) -* Fixes a crash when a query is locally executed with explain analyze (#6892) +* Makes sure to take `shouldhaveshards` setting into account for a node when + planning rebalance steps (#6887) * Improves the compatibility with other extension by forwarding to existing emit_log_hook in our log hook (#6877) -* Fixes a bug related to WHERE clause list which contains placeholder (#6857) +* Fixes wrong result when using `NOT MATCHED` with MERGE command (#6943) + +* Fixes querying the view `citus_shard_sizes` when there are too many shards (#7018) + +* Fixes a bug related to type casts from other types to text/varchar (#6391) + +* Fixes propagating `CREATE SCHEMA AUTHORIZATION ..` with no schema name (#7015) + +* Fixes an error when creating a FOREIGN KEY without a name referencing a schema + qualified table (#6986) + +* Fixes a rare bug which mostly happens with queries that contain both outer + join and where clauses (#6857) + +* Fixes a bug related to propagation of schemas when pg_dist_node is empty (#6900) + +* Fixes a crash when a query is locally executed with explain analyze (#6892) ### citus v11.3.0 (May 2, 2023) ###