Re: [HACKERS] duplicate oids in pg_proc

From: "Thomas G(dot) Lockhart" <lockhart(at)alumni(dot)caltech(dot)edu>
To: t-ishii(at)sra(dot)co(dot)jp
Cc: hackers(at)postgresql(dot)org
Subject: Re: [HACKERS] duplicate oids in pg_proc
Date: 1998-06-01 06:15:33
Message-ID: 35724705.21AC9FE1@alumni.caltech.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> There are some duplicate oids in pg_proc of May30 snapshot.
>
> test=> select p1.oid,p1.proname,p2.proname from pg_proc p1,pg_proc p2
> where p1.oid = p2.oid and p1.proname > p2.proname;
>
> oid|proname |proname
> ----+------------+-----------
> 1377|textoctetlen|char
> 1374|octet_length|char_bpchar
> 1375|octet_length|bpchar
> 1376|octet_length|bpchar_char
> 1600|version |line
> (5 rows)
>
> I know octet_length's are from my patch but for others I don't know.
> Comments?

Those must be mine (char, char_bpchar, bpchar, bpchar_char). I am sure
that I ran ./unused_oids to assign them, but obviously messed it up.
Will reassign soon. Darn :(

- Tom

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas G. Lockhart 1998-06-01 06:19:44 Re: [HACKERS] Re: [DOCS] Re: FE/BE protocol revision patcht
Previous Message Thomas G. Lockhart 1998-06-01 06:11:34 Re: [GENERAL] Re: [HACKERS] custom types and optimization