Re: change output of \dp

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: euler(at)ufgnet(dot)ufg(dot)br
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: change output of \dp
Date: 2004-03-22 03:38:44
Message-ID: 200403220338.i2M3ciU04611@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches


Newest version of patch applied. Thanks.

Handles views and sequences.

---------------------------------------------------------------------------

Euler Taveira de Oliveira wrote:
> Hi,
>
> I just noticed that \dp outputs "Table" to indicate relations (tables, sequences and views) instead of "Relation" or "Name". This patch just correct it, using "Name" and attaching its "Type".
>
> Without the patch:
>
> teste=# \d
> List of relations
> Schema | Name | Type | Owner
> --------+--------+----------+-------
> public | ab | sequence | euler
> public | foo | table | euler
> public | foobar | view | euler
> public | teste | table | euler
> (4 rows)
>
> teste=# \dp
> Access privileges for database "teste"
> Schema | Table | Access privileges
> --------+--------+---------------------------------------------
> public | ab | {euler=a*r*w*d*R*x*t*/euler,teste=ar/euler}
> public | foo | {euler=a*r*w*d*R*x*t*/euler,teste=ar/euler}
> public | foobar |
> public | teste | {euler=a*r*w*d*R*x*t*/euler,teste=ar/euler}
> (4 rows)
>
> And with the patch:
>
> teste=# \dp
> Access privileges for database "teste"
> Schema | Name | Type | Access privileges
> --------+--------+----------+---------------------------------------------
> public | ab | sequence | {euler=a*r*w*d*R*x*t*/euler,teste=ar/euler}
> public | foo | table | {euler=a*r*w*d*R*x*t*/euler,teste=ar/euler}
> public | foobar | view |
> public | teste | table | {euler=a*r*w*d*R*x*t*/euler,teste=ar/euler}
> (4 rows)
>
> Please apply it under HEAD, and if it's convenient, put it under 7_4 Branch.
>
> Regards,
>
> --
> Euler Taveira de Oliveira
> euler (at) ufgnet.ufg.br
> Desenvolvedor Web e Administrador de Sistemas
> UFGNet - Universidade Federal de Goi?s

[ Attachment, skipping... ]

>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2004-03-22 03:38:53 Re: change output of \dp
Previous Message Bruce Momjian 2004-03-22 01:48:55 Re: [HACKERS] 7.4.2 Build broken on (Sparc) Solaris 7 and 8