Thread

  1. patch: Distinguish between unique indexes and unique constraints

    Josh Kupershmidt <schmiddy@gmail.com> — 2010-04-18T03:53:01Z

    Addressing TODO item "Distinguish between unique indexes and unique
    constraints in \d+" for psql, and picking up from thread:
    http://archives.postgresql.org/message-id/8780.1271187360@sss.pgh.pa.us
    
    Attached is a simple patch which clarifies unique constraints with
    "UNIQUE CONSTRAINT" in psql's \d+ description of a table. The
    appearance of unique indexes is left as-is.
    
    == Old \d+ display ==
    Indexes:
        "name_uniq_constr" UNIQUE, btree (name)
    
    == New \d+ display ==
    Indexes:
        "name_uniq_constr" UNIQUE CONSTRAINT, btree (name)
    
    Josh
    
  2. Re: patch: Distinguish between unique indexes and unique constraints

    Robert Haas <robertmhaas@gmail.com> — 2010-04-18T15:18:11Z

    On Sat, Apr 17, 2010 at 11:53 PM, Josh Kupershmidt <schmiddy@gmail.com> wrote:
    > Addressing TODO item "Distinguish between unique indexes and unique
    > constraints in \d+" for psql, and picking up from thread:
    > http://archives.postgresql.org/message-id/8780.1271187360@sss.pgh.pa.us
    >
    > Attached is a simple patch which clarifies unique constraints with
    > "UNIQUE CONSTRAINT" in psql's \d+ description of a table. The
    > appearance of unique indexes is left as-is.
    >
    > == Old \d+ display ==
    > Indexes:
    >    "name_uniq_constr" UNIQUE, btree (name)
    >
    > == New \d+ display ==
    > Indexes:
    >    "name_uniq_constr" UNIQUE CONSTRAINT, btree (name)
    
    You know, I've never really understood the difference between these
    two types of things, or why we need to support both.  Which may be
    just because I'm slow?
    
    ...Robert
    
    
  3. Re: patch: Distinguish between unique indexes and unique constraints

    Tom Lane <tgl@sss.pgh.pa.us> — 2010-04-18T15:23:06Z

    Robert Haas <robertmhaas@gmail.com> writes:
    > You know, I've never really understood the difference between these
    > two types of things, or why we need to support both.  Which may be
    > just because I'm slow?
    
    Unique constraints are defined by the SQL standard, and have a syntax
    that can't support a lot of the extensions that CREATE INDEX allows.
    There's also restrictions in the information_schema views.
    So unifying the two concepts completely would be a mess.
    
    			regards, tom lane
    
    
  4. Re: patch: Distinguish between unique indexes and unique constraints

    Robert Haas <robertmhaas@gmail.com> — 2010-04-18T15:41:37Z

    On Sun, Apr 18, 2010 at 11:23 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
    > Robert Haas <robertmhaas@gmail.com> writes:
    >> You know, I've never really understood the difference between these
    >> two types of things, or why we need to support both.  Which may be
    >> just because I'm slow?
    >
    > Unique constraints are defined by the SQL standard, and have a syntax
    > that can't support a lot of the extensions that CREATE INDEX allows.
    > There's also restrictions in the information_schema views.
    > So unifying the two concepts completely would be a mess.
    
    I thought it might be something like that.
    
    Josh - you may want to add your patch here:
    
    https://commitfest.postgresql.org/action/commitfest_view/open
    
    ...Robert
    
    
  5. Re: patch: Distinguish between unique indexes and unique constraints

    Josh Kupershmidt <schmiddy@gmail.com> — 2010-04-18T15:53:21Z

    On Sun, Apr 18, 2010 at 11:41 AM, Robert Haas <robertmhaas@gmail.com> wrote:
    > Josh - you may want to add your patch here:
    >
    > https://commitfest.postgresql.org/action/commitfest_view/open
    
    Added, thanks!
    
    Josh