Show
Ignore:
Timestamp:
07/15/10 08:26:47 (19 months ago)
Author:
ol
Message:

Remove test on PK related to XSD schema on Describe Feature Type?. Add nillable parameter. Handle not null with a default value (a sequence for instance). Related to #50

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/ows/ows_storage.c

    r278 r312  
    161161    buffer_add_str(sql, "' AND c.relnamespace = n.oid "); 
    162162    buffer_add_str(sql, "AND a.attnum > 0 AND a.attrelid = c.oid "); 
    163     buffer_add_str(sql, "AND a.atttypid = t.oid AND a.attnotnull = 't'"); 
     163    buffer_add_str(sql, "AND a.atttypid = t.oid AND a.attnotnull = 't' AND a.atthasdef='f'"); 
    164164 
    165165    res = PQexec(o->pg, sql->buf);