Thread

  1. pgsql: Minor doc tweak: "NOT NULL" is redundant with "SERIAL" in

    Neil Conway <neilc@postgresql.org> — 2005-12-25T01:41:15Z

    Log Message:
    -----------
    Minor doc tweak: "NOT NULL" is redundant with "SERIAL" in example.
    
    Modified Files:
    --------------
        pgsql/doc/src/sgml/ref:
            create_domain.sgml (r1.26 -> r1.27)
            (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/create_domain.sgml.diff?r1=1.26&r2=1.27)
    
    
  2. Re: [COMMITTERS] pgsql: Minor doc tweak: "NOT NULL" is redundant

    Christopher Kings-Lynne <chriskl@familyhealth.com.au> — 2005-12-28T06:01:35Z

    I hope you mean 'redundant with "PRIMARY KEY" in example'...
    
    Works out the same way though.
    
    Chris
    
    Neil Conway wrote:
    > Log Message:
    > -----------
    > Minor doc tweak: "NOT NULL" is redundant with "SERIAL" in example.
    > 
    > Modified Files:
    > --------------
    >     pgsql/doc/src/sgml/ref:
    >         create_domain.sgml (r1.26 -> r1.27)
    >         (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/create_domain.sgml.diff?r1=1.26&r2=1.27)
    > 
    > ---------------------------(end of broadcast)---------------------------
    > TIP 4: Have you searched our list archives?
    > 
    >                http://archives.postgresql.org
    
    
    
  3. Re: [COMMITTERS] pgsql: Minor doc tweak: "NOT NULL" is

    Neil Conway <neilc@samurai.com> — 2005-12-29T07:01:50Z

    Christopher Kings-Lynne wrote:
    > I hope you mean 'redundant with "PRIMARY KEY" in example'...
    
    Why? SERIAL implies NOT NULL (although PRIMARY KEY does as well, of course).
    
    -Neil
    
    
    
  4. Re: [COMMITTERS] pgsql: Minor doc tweak: "NOT NULL" is

    Christopher Kings-Lynne <chriskl@familyhealth.com.au> — 2005-12-29T07:14:03Z

    > Why? SERIAL implies NOT NULL (although PRIMARY KEY does as well, of 
    > course).
    
    Ah yes you're right.  I mixed up with the fact that SERIAL no longer 
    implies UNIQUE...
    
    Chris