From 5de2f4866b442c778c94e7f8ef3e44b60aba15d7 Mon Sep 17 00:00:00 2001 From: Arthur Nascimento Date: Wed, 26 Nov 2025 14:38:50 -0300 Subject: [PATCH] add ASP 1.4.0 release notes This includes the platform enhancements and the bug fixes that are brought in by ASP 1.4.0 --- .../rel_notes/src/relnote_1.4.0.yml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/relnote_1.4.0.yml diff --git a/advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/relnote_1.4.0.yml b/advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/relnote_1.4.0.yml new file mode 100644 index 0000000000..018c80a952 --- /dev/null +++ b/advocacy_docs/pg_extensions/advanced_storage_pack/rel_notes/src/relnote_1.4.0.yml @@ -0,0 +1,38 @@ +# yaml-language-server: $schema=https://raw.githubusercontent.com/EnterpriseDB/docs/refs/heads/develop/tools/automation/generators/relgen/relnote-schema.json +product: Advanced Storage Pack +version: 1.4.0 +date: 26 November 2025 +intro: | + Advanced Storage Pack 1.4.0 includes a number of bug fixes and wider platform support. +highlights: | + - **Improved platform support**: ASP 1.4.0 is now supported on databases version 18, as well as on SLES 15SP7. + +relnotes: +- relnote: Bluefin (17+): fix crash recovery bug + details: | + Fix FPI emission during tuple insertion that caused the recovery to fail with: "PANIC: failed to add bluefintuple". + jira: "" + addresses: "" + type: Bug fix + impact: Highest +- relnote: Bluefin: do not compress tuple when not worth it + details: | + When trying regular LZ4 compression, if the size of compressed data is greater or equal to the size of the original data, use the original tuple. This helps to prevent adding "compressed" tuples bigger than the original one and potentially not fitting on the target page, which was choosen based on the size of the original tuple (before trying compression). + jira: "" + addresses: "" + type: Bug fix + impact: High +- relnote: Bluefin: fix Compressed format value on big-endian (s390x) + details: | + On big-endian architectures, like s390x, we must use a different representation for the Compressed tuples to avoid issues. + jira: "" + addresses: "" + type: Bug fix + impact: High +- relnote: Bluefin/Refdata/Autocluster: fix when running the verify function on table type + details: | + This makes sure the verify function checks the relation type and the AM type when running. + jira: "" + addresses: "" + type: Bug fix + impact: Medium