Thread

Commits

  1. doc: Quote value in SET NAMES documentation

  1. SET NAMES value value should be single quoted

    jian he <jian.universality@gmail.com> — 2024-10-07T09:33:27Z

    NAMES
    SET NAMES value is an alias for SET client_encoding TO value.
    
    it should be:
    SET NAMES 'value' is an alias for SET client_encoding TO value.
    
    
    https://www.postgresql.org/docs/current/sql-set.html
    
    
    
    
  2. Re: SET NAMES value value should be single quoted

    Daniel Gustafsson <daniel@yesql.se> — 2024-10-07T09:53:23Z

    > On 7 Oct 2024, at 11:33, jian he <jian.universality@gmail.com> wrote:
    > 
    > NAMES
    > SET NAMES value is an alias for SET client_encoding TO value.
    > 
    > it should be:
    > SET NAMES 'value' is an alias for SET client_encoding TO value.
    
    Good find, it indeed should. Fixed.
    
    --
    Daniel Gustafsson