CVSROOT:        /cvsroot
Module name:    pgsql-server
Changes by:     [EMAIL PROTECTED]       03/06/24 22:11:09

Modified files:
        contrib/adddepend: README.adddepend adddepend 

Log message:
        - Corrections for tables, columns with uppercase characters
        - Don't attempt to convert partial or expressional unique indexes
        - Don't attempt to convert unique indexes based on a non-default
        opclasses
        
        - Untested prevention of conversion of non-btree indexes unique
        indexes.  Untested as postgresql doesn't allow hash, gist, or rtree
        based indexes to be unique.
        
        rbt=# create unique index t on a using hash (col);
        ERROR:  DefineIndex: access method "hash" does not support UNIQUE
        indexes
        rbt=# create unique index t on a using gist (col);
        ERROR:  DefineIndex: access method "gist" does not support UNIQUE
        indexes
        rbt=# select version();
        version
        ------------------------------------------------------------------------
        PostgreSQL 7.4devel on i386-unknown-freebsd4.8, compiled by GCC 2.95.4
        
        Rod Taylor


---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
    (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])

Reply via email to