1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Fix outdated comment of COPY in gram.y.

Author: ChangAo Chen <cca5507@qq.com>
Discussion: https://postgr.es/m/tencent_392C0E92EC52432D0A336B9D52E66426F009@qq.com
This commit is contained in:
Masahiko Sawada
2025-11-03 10:34:49 -08:00
parent 645cb44c54
commit e7ccb247b3

View File

@@ -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' }