From ea97154fc2f5ff830b1b9a6fc6cf540042c28cbc Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 22 Dec 2025 19:41:52 -0500 Subject: [PATCH] doc: add "DO" to "ON CONFLICT" in CREATE VIEW text This is done for consistency. Reported-by: jian he Author: Laurenz Albe Discussion: https://postgr.es/m/CACJufxEW1RRDD9ZWGcW_Np_Z9VGPE-YC7u0C6RcsEY8EKiTdBg@mail.gmail.com --- doc/src/sgml/ref/create_view.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ref/create_view.sgml b/doc/src/sgml/ref/create_view.sgml index 7b6b750c6de..f8a4740608a 100644 --- a/doc/src/sgml/ref/create_view.sgml +++ b/doc/src/sgml/ref/create_view.sgml @@ -415,7 +415,7 @@ CREATE VIEW vista AS SELECT text 'Hello World' AS hello; DELETE, or MERGE statement on the view into the corresponding statement on the underlying base relation. INSERT statements that have an ON - CONFLICT UPDATE clause are fully supported. + CONFLICT DO UPDATE clause are fully supported. @@ -430,7 +430,7 @@ CREATE VIEW vista AS SELECT text 'Hello World' AS hello; an INSERT or MERGE command can potentially insert base-relation rows that do not satisfy the WHERE condition and thus are not - visible through the view (ON CONFLICT UPDATE may + visible through the view (ON CONFLICT DO UPDATE may similarly affect an existing row not visible through the view). The CHECK OPTION may be used to prevent INSERT, UPDATE, and -- 2.39.5