From 1f2105e3ea3992c62fb77170b70744636b199d22 Mon Sep 17 00:00:00 2001 From: Weny Xu Date: Wed, 22 May 2024 10:42:26 +0800 Subject: [PATCH 1/2] docs: add v0.8.0 highlights --- docs/release-notes/release-0-8-0.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/release-0-8-0.md b/docs/release-notes/release-0-8-0.md index 511df5c35..d3ab5ada3 100644 --- a/docs/release-notes/release-0-8-0.md +++ b/docs/release-notes/release-0-8-0.md @@ -1,6 +1,16 @@ # v0.8.0 -Release date: May 17, 2024 +Release date: May 18, 2024 + +## 👍 Highlights + +- Flow Engine: which brings continuous aggregation capabilities. +- Column Type Modification: allows users to effortlessly alter the data type of columns within a table without the hassle of rebuilding the table or manually migrating data. +- Cluster Management Information Table: allows querying for information about the cluster. This functionality aids administrators in monitoring and managing the health status of the database cluster, facilitating prompt issue detection and resolution. +- Append-only Tables: Users can now create tables in Append-only mode by setting the append mode during table creation. +- DROP DATABASE: enables swift deletion of all tables and resources under a database instance. +- New Table Partitioning Methods and Syntax: considering the future need for frequent partition changes such as automatic partitioning or repartitioning, we're developing a new partitioning syntax. +- `EXPLAIN ANALYZE `: analyze and optimize query statements swiftly in distributed mode. ## Breaking changes From 0da4062728d36a2948484cc30208b56a9efb97d4 Mon Sep 17 00:00:00 2001 From: Yiran Date: Wed, 22 May 2024 16:50:00 +0800 Subject: [PATCH 2/2] Apply suggestions from code review --- docs/release-notes/release-0-8-0.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/release-notes/release-0-8-0.md b/docs/release-notes/release-0-8-0.md index d3ab5ada3..265170626 100644 --- a/docs/release-notes/release-0-8-0.md +++ b/docs/release-notes/release-0-8-0.md @@ -4,13 +4,12 @@ Release date: May 18, 2024 ## 👍 Highlights -- Flow Engine: which brings continuous aggregation capabilities. -- Column Type Modification: allows users to effortlessly alter the data type of columns within a table without the hassle of rebuilding the table or manually migrating data. -- Cluster Management Information Table: allows querying for information about the cluster. This functionality aids administrators in monitoring and managing the health status of the database cluster, facilitating prompt issue detection and resolution. -- Append-only Tables: Users can now create tables in Append-only mode by setting the append mode during table creation. -- DROP DATABASE: enables swift deletion of all tables and resources under a database instance. -- New Table Partitioning Methods and Syntax: considering the future need for frequent partition changes such as automatic partitioning or repartitioning, we're developing a new partitioning syntax. -- `EXPLAIN ANALYZE `: analyze and optimize query statements swiftly in distributed mode. +- [Flow Engine](https://docs.greptime.com/user-guide/continuous-aggregation/overview): which brings continuous aggregation capabilities. +- [Column Type Modification](https://docs.greptime.com/reference/sql/alter#modify-column-type): allows you to effortlessly alter the data type of columns within a table without the hassle of rebuilding the table or manually migrating data. +- [Cluster Management Information Table](https://docs.greptime.com/reference/sql/information-schema/overview): allows querying for information about the cluster. This functionality aids administrators in monitoring and managing the health status of the database cluster, facilitating prompt issue detection and resolution. +- [Append-only Tables](https://docs.greptime.com/reference/sql/create#table-options): You can now create tables in Append-only mode by setting the append mode during table creation. +- [DROP DATABASE](https://docs.greptime.com/reference/sql/drop.md#drop-database): enables swift deletion of all tables and resources under a database instance. +- [`EXPLAIN ANALYZE `](https://docs.greptime.com/reference/sql/explain.md): analyze and optimize query statements swiftly in distributed mode. ## Breaking changes