Thread

Commits

  1. doc: Fix column_name parameter in ALTER MATERIALIZED VIEW

  1. column_name of ALTER MATERIALIZED VIEW should only refer to an existing column

    Erik Wienhold <ewie@ewie.name> — 2024-05-22T00:59:37Z

    Here's a patch for $SUBJECT.  Looks like the current wording was copied
    from ALTER TABLE.  In ALTER VIEW we correctly state that column_name
    must be an existing column.
    
    -- 
    Erik
    
  2. Re: column_name of ALTER MATERIALIZED VIEW should only refer to an existing column

    Michael Paquier <michael@paquier.xyz> — 2024-05-22T05:12:36Z

    On Wed, May 22, 2024 at 02:59:37AM +0200, Erik Wienhold wrote:
    > Here's a patch for $SUBJECT.  Looks like the current wording was copied
    > from ALTER TABLE.  In ALTER VIEW we correctly state that column_name
    > must be an existing column.
    
    Fun.  You are right, none of the patterns supported by this query are
    able to add an attribute, so this new formulation makes sense.
    
    Will fix once we are out of release freeze time on HEAD.  Thanks!
    --
    Michael
    
  3. Re: column_name of ALTER MATERIALIZED VIEW should only refer to an existing column

    Michael Paquier <michael@paquier.xyz> — 2024-05-23T04:04:31Z

    On Wed, May 22, 2024 at 02:12:36PM +0900, Michael Paquier wrote:
    > Will fix once we are out of release freeze time on HEAD.  Thanks!
    
    And done as of dd087e1c13bf.
    --
    Michael
    
  4. Re: column_name of ALTER MATERIALIZED VIEW should only refer to an existing column

    Erik Wienhold <ewie@ewie.name> — 2024-05-23T12:17:33Z

    On 2024-05-23 06:04 +0200, Michael Paquier wrote:
    > On Wed, May 22, 2024 at 02:12:36PM +0900, Michael Paquier wrote:
    > > Will fix once we are out of release freeze time on HEAD.  Thanks!
    > 
    > And done as of dd087e1c13bf.
    
    Thank you Michael!
    
    -- 
    Erik