Re: [HACKERS] contrib

From: "Joe Conway" <joe(at)conway-family(dot)com>
To: <pgsql-patches(at)postgresql(dot)org>
Subject: Re: [HACKERS] contrib
Date: 2001-05-15 03:54:46
Message-ID: 00df01c0dcf2$c8e21530$0705a8c0@jecw2k1
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-patches

> > Is there a formal way of submiting something to the
> > contrib section of the distribution?
>
> Not really. Just throw it over to patches, and we will check it out.
>
>
> --
> Bruce Momjian | http://candle.pha.pa.us

While thinking about how to implement TABLE_PRIVILEGES view per SQL92, I
realized that a function is needed to dynamically return the current
database name, and current database owner. I also remembered that I have
needed the first function before and could not find anything. Attached is a
group of 4 functions, suitable (I think) for contrib, as follows:

current_dbname() - returns name of current database
current_dboid() - retuns oid of current database
current_dbownername() - returns owner name of current database (based on
datdba)
current_dbownerid() - returns owner usesysid (well, more accurately datdba)

Installation:
copy to contrib
tar -xzvf current_db.tgz
cd current_db
./install.sh (or alternatively make; make install; psql -U postgres
your_db_name < current_db.sql)

I'd like to have this considered for inclusion in contrib if deemed useful
to others. Is there anything specific I need to do to in addition to the
attached?

Thanks,

-- Joe

Attachment Content-Type Size
current_db.tgz application/x-compressed 2.4 KB

In response to

  • Re: contrib at 2001-02-05 03:42:10 from Bruce Momjian

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Justin Clift 2001-05-15 03:58:39 Re: Re: [HACKERS] contrib
Previous Message Tom Lane 2001-05-15 03:34:33 Re: Updating system catalogs after a tuple deletion

Browse pgsql-patches by date

  From Date Subject
Next Message Justin Clift 2001-05-15 03:58:39 Re: Re: [HACKERS] contrib
Previous Message Bruce Momjian 2001-05-15 03:47:50 Re: Remove columns pg_index.haskeytype and pg_index.indisclustered