Thread

Commits

  1. doc: add "DO" to "ON CONFLICT" in CREATE VIEW text

  1. change ON CONFLICT UPDATE

    jian he <jian.universality@gmail.com> — 2025-11-25T14:47:59Z

    hi.
    
    in doc/src/sgml/ref/create_view.sgml,
    I want change two occurrences of
    <literal>ON CONFLICT UPDATE</literal>
    to
    <literal>ON CONFLICT DO UPDATE</literal>
    (between line 412 to line 439).
    
    since other places using <literal>ON CONFLICT DO UPDATE</literal>.
    
    
    
    
  2. Re: change ON CONFLICT UPDATE

    Laurenz Albe <laurenz.albe@cybertec.at> — 2025-11-26T09:52:10Z

    On Tue, 2025-11-25 at 22:47 +0800, jian he wrote:
    > in doc/src/sgml/ref/create_view.sgml,
    > I want change two occurrences of
    > <literal>ON CONFLICT UPDATE</literal>
    > to
    > <literal>ON CONFLICT DO UPDATE</literal>
    > (between line 412 to line 439).
    > 
    > since other places using <literal>ON CONFLICT DO UPDATE</literal>.
    
    +1
    
    It is not very important, but consistency is always good.
    Here is a patch for that.
    
    Yours,
    Laurenz Albe
    
  3. Re: change ON CONFLICT UPDATE

    Bruce Momjian <bruce@momjian.us> — 2025-12-23T00:42:12Z

    On Wed, Nov 26, 2025 at 10:52:10AM +0100, Laurenz Albe wrote:
    > On Tue, 2025-11-25 at 22:47 +0800, jian he wrote:
    > > in doc/src/sgml/ref/create_view.sgml,
    > > I want change two occurrences of
    > > <literal>ON CONFLICT UPDATE</literal>
    > > to
    > > <literal>ON CONFLICT DO UPDATE</literal>
    > > (between line 412 to line 439).
    > > 
    > > since other places using <literal>ON CONFLICT DO UPDATE</literal>.
    > 
    > +1
    > 
    > It is not very important, but consistency is always good.
    > Here is a patch for that.
    
    Agreed, patch applied, thanks.
    
    -- 
      Bruce Momjian  <bruce@momjian.us>        https://momjian.us
      EDB                                      https://enterprisedb.com
    
      Do not let urgent matters crowd out time for investment in the future.
    
    
    
    
  4. Re: change ON CONFLICT UPDATE

    Laurenz Albe <laurenz.albe@cybertec.at> — 2025-12-23T10:19:10Z

    On Mon, 2025-12-22 at 19:42 -0500, Bruce Momjian wrote:
    > Agreed, patch applied, thanks.
    
    Thank you!
    
    Laurenz Albe