From 9e1e0d71803a24f0cc3e56ada5f3f43cda789d97 Mon Sep 17 00:00:00 2001 From: Pavan Deolasee Date: Tue, 4 Nov 2025 12:55:16 +0530 Subject: [PATCH 1/6] Add release notes for version 6.1.2 Added release notes for EDB Postgres Distributed version 6.1.2, detailing bug fixes and improvements. --- .../docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml diff --git a/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml b/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml new file mode 100644 index 0000000000..b3f48d1b93 --- /dev/null +++ b/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml @@ -0,0 +1,12 @@ +# yaml-language-server: $schema=https://raw.githubusercontent.com/EnterpriseDB/docs/refs/heads/develop/tools/automation/generators/relgen/relnote-schema.json +product: EDB Postgres Distributed +version: 6.1.2 +date: 4 November 2025 +intro: | + EDB Postgres Distributed 6.1.2 includes only bug fixes focused on improving stability and reliability. No new features or enhancements are included in this release. Please see the details below. + +relnotes: +- relnote: Fix handling of ALTER TABLE command in a streamed transaction + details: | + When an ALTER TABLE command, which uses the newly introduced table rewrite support, is streamed to a file or a writer, the step that creates a temporary table was not getting executed at all. Thus the subsequent writes to the table were failing, resulting in a data loss. This is now fixed by properly implementing a stream message callback method. (BDR-7249) + impact: High From dcdfd02b7a471b7c04c38c1c4b1d9febbd4a3a11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 07:25:53 +0000 Subject: [PATCH 2/6] update generated release notes --- product_docs/docs/pgd/6.1/rel_notes/index.mdx | 2 ++ .../pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx | 20 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx diff --git a/product_docs/docs/pgd/6.1/rel_notes/index.mdx b/product_docs/docs/pgd/6.1/rel_notes/index.mdx index 460b1689ca..640e2c5a53 100644 --- a/product_docs/docs/pgd/6.1/rel_notes/index.mdx +++ b/product_docs/docs/pgd/6.1/rel_notes/index.mdx @@ -5,6 +5,7 @@ navTitle: Release notes description: Release notes for EDB Postgres Distributed 6 and later indexCards: none navigation: + - pgd_6.1.2_rel_notes - pgd_6.1.1_rel_notes - pgd_6.1.0_rel_notes - pgd_6.0.2_rel_notes @@ -19,6 +20,7 @@ The EDB Postgres Distributed documentation describes the latest version of EDB P | Release Date | EDB Postgres Distributed | |---|---| +| 04 Nov 2025 | [6.1.2](./pgd_6.1.2_rel_notes) | | 09 Oct 2025 | [6.1.1](./pgd_6.1.1_rel_notes) | | 19 Aug 2025 | [6.1.0](./pgd_6.1.0_rel_notes) | | 25 Jun 2025 | [6.0.2](./pgd_6.0.2_rel_notes) | diff --git a/product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx b/product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx new file mode 100644 index 0000000000..cf7ed6d71b --- /dev/null +++ b/product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx @@ -0,0 +1,20 @@ +--- +# IMPORTANT: Do not edit this file directly - it is generated from yaml source. +title: EDB Postgres Distributed 6.1.2 release notes +navTitle: Version 6.1.2 +originalFilePath: product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml +editTarget: originalFilePath +--- + +Released: 4 November 2025 + +EDB Postgres Distributed 6.1.2 includes only bug fixes focused on improving stability and reliability. No new features or enhancements are included in this release. Please see the details below. + +## Other + + + +
DescriptionAddresses
Fix handling of ALTER TABLE command in a streamed transaction

When an ALTER TABLE command, which uses the newly introduced table rewrite support, is streamed to a file or a writer, the step that creates a temporary table was not getting executed at all. Thus the subsequent writes to the table were failing, resulting in a data loss. This is now fixed by properly implementing a stream message callback method. (BDR-7249)

+
+ + From d95094acc5bb930fce0b02cab017704f9beac9bb Mon Sep 17 00:00:00 2001 From: Mireia Perez Fuster Date: Tue, 4 Nov 2025 10:31:20 +0000 Subject: [PATCH 3/6] Added field type and rephrased note a little bit --- product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml b/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml index b3f48d1b93..8e0b87694e 100644 --- a/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml +++ b/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml @@ -6,7 +6,9 @@ intro: | EDB Postgres Distributed 6.1.2 includes only bug fixes focused on improving stability and reliability. No new features or enhancements are included in this release. Please see the details below. relnotes: -- relnote: Fix handling of ALTER TABLE command in a streamed transaction +- relnote: Fixed ALTER TABLE failure during streamed transaction with table rewrite details: | - When an ALTER TABLE command, which uses the newly introduced table rewrite support, is streamed to a file or a writer, the step that creates a temporary table was not getting executed at all. Thus the subsequent writes to the table were failing, resulting in a data loss. This is now fixed by properly implementing a stream message callback method. (BDR-7249) + The `ALTER TABLE` command failed to create a temporary table when using table rewrite support and streaming to a file or a writer. The fix implements a stream message callback method, preventing a potential data loss scenario during these operations. + type: Bug Fix impact: High +~ From 5b16e2c5217d87f2f05328a263b5cbc872850c24 Mon Sep 17 00:00:00 2001 From: Mireia Perez Fuster Date: Tue, 4 Nov 2025 10:40:47 +0000 Subject: [PATCH 4/6] Add jira number --- product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml b/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml index 8e0b87694e..299c8fc9f3 100644 --- a/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml +++ b/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml @@ -9,6 +9,7 @@ relnotes: - relnote: Fixed ALTER TABLE failure during streamed transaction with table rewrite details: | The `ALTER TABLE` command failed to create a temporary table when using table rewrite support and streaming to a file or a writer. The fix implements a stream message callback method, preventing a potential data loss scenario during these operations. + jira: BDR-7249 type: Bug Fix impact: High ~ From f334a6c98784bbf5b3538e894f7d9f2d1e3a1ed9 Mon Sep 17 00:00:00 2001 From: Mireia Perez Fuster Date: Tue, 4 Nov 2025 10:45:25 +0000 Subject: [PATCH 5/6] fix --- product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml b/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml index 299c8fc9f3..cb3519bf26 100644 --- a/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml +++ b/product_docs/docs/pgd/6.1/rel_notes/src/relnote_6.1.2.yml @@ -9,7 +9,6 @@ relnotes: - relnote: Fixed ALTER TABLE failure during streamed transaction with table rewrite details: | The `ALTER TABLE` command failed to create a temporary table when using table rewrite support and streaming to a file or a writer. The fix implements a stream message callback method, preventing a potential data loss scenario during these operations. - jira: BDR-7249 + jira: BDR-7249 type: Bug Fix impact: High -~ From aa8903e1d1ecd5eaad17a1a75d07f70644ae3c08 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Nov 2025 10:46:00 +0000 Subject: [PATCH 6/6] update generated release notes --- product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx b/product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx index cf7ed6d71b..104266e085 100644 --- a/product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx +++ b/product_docs/docs/pgd/6.1/rel_notes/pgd_6.1.2_rel_notes.mdx @@ -10,10 +10,10 @@ Released: 4 November 2025 EDB Postgres Distributed 6.1.2 includes only bug fixes focused on improving stability and reliability. No new features or enhancements are included in this release. Please see the details below. -## Other +## Bug Fixes -
DescriptionAddresses
Fix handling of ALTER TABLE command in a streamed transaction

When an ALTER TABLE command, which uses the newly introduced table rewrite support, is streamed to a file or a writer, the step that creates a temporary table was not getting executed at all. Thus the subsequent writes to the table were failing, resulting in a data loss. This is now fixed by properly implementing a stream message callback method. (BDR-7249)

+
Fixed ALTER TABLE failure during streamed transaction with table rewrite

The ALTER TABLE command failed to create a temporary table when using table rewrite support and streaming to a file or a writer. The fix implements a stream message callback method, preventing a potential data loss scenario during these operations.