Thread

  1. attribute of type 'serial not null'

    Christof Petig <christof.petig@wtal.de> — 1999-09-27T13:58:35Z

    Hi,
    
    one might argue whether it is a bug that
      create table t ( k serial not null ) ;
    is invalid while
      create table t ( k serial ) ;
    is ok. But since this should not be illegal (a serial is not null by
    definition) and it kills iX's SQL benchmark (iX is a german computer
    magazine) I vote for ignoring the trailing not null.
    
    (Of course you could use 'int4 not null' as your key's type, but you'd
    lose 'serial's built in index facilities). No show stopper, just
    annoying (since other databases seem to allow it).
    
    Christof
    PS: I would post test results (but the database crashed after inserting
    130441 [out of 1 million] tuples). Still looking closer at it (had been
    last week's CVS version).
    PPS: The benchmark also creates an unique key on the 'serial' column, so
    int4 would be legal as well.