From 0da82414361ce2dd12c7a428b6410a322f2c8f73 Mon Sep 17 00:00:00 2001
From: Man Zeng <zengman@halodbtech.com>
Date: Sat, 10 Jan 2026 12:23:49 +0800
Subject: [PATCH 1/3] Fix comment error in astreamer_zstd.c header

The file header comment incorrectly states 'lz4 compression' when it
should say 'zstd compression'. This appears to be a copy-paste error
from astreamer_lz4.c.
---
 src/fe_utils/astreamer_zstd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/fe_utils/astreamer_zstd.c b/src/fe_utils/astreamer_zstd.c
index 885a5608be7..2bf5c57b902 100644
--- a/src/fe_utils/astreamer_zstd.c
+++ b/src/fe_utils/astreamer_zstd.c
@@ -3,7 +3,7 @@
  * astreamer_zstd.c
  *
  * Archive streamers that deal with data compressed using zstd.
- * astreamer_zstd_compressor applies lz4 compression to the input stream,
+ * astreamer_zstd_compressor applies zstd compression to the input stream,
  * and astreamer_zstd_decompressor does the reverse.
  *
  * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
-- 
2.45.2

