From e7ccb247b38fff342c13aa7bdf61ce5ab45b2a85 Mon Sep 17 00:00:00 2001 From: Masahiko Sawada Date: Mon, 3 Nov 2025 10:34:49 -0800 Subject: [PATCH] Fix outdated comment of COPY in gram.y. Author: ChangAo Chen Discussion: https://postgr.es/m/tencent_392C0E92EC52432D0A336B9D52E66426F009@qq.com --- src/backend/parser/gram.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index a4b29c822e8..a65097f19cf 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -3408,7 +3408,7 @@ ClosePortalStmt: * COPY ( query ) TO file [WITH] [(options)] * * where 'query' can be one of: - * { SELECT | UPDATE | INSERT | DELETE } + * { SELECT | UPDATE | INSERT | DELETE | MERGE } * * and 'file' can be one of: * { PROGRAM 'command' | STDIN | STDOUT | 'filename' } -- 2.47.3