TODO list updates

From: Mark Hollomon <mhh(at)mindspring(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: TODO list updates
Date: 2000-09-07 14:19:57
Message-ID: 20000907101957.B20520@mindspring.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


* Disallow LOCK on view
change to
* -Disallow LOCK on view (Mark H)
well, at least when my patch is applied :)

* Allow SQL function indexes
This seems to work in the CVS code, or I have misunderstood:
CREATE TABLE t ( a int);
CREATE FUNCTION mod5(int) RETURNS int AS 'select $1 % 5' LANGUAGE 'sql';
CREATE INDEX sql_index ON t ( mod5(a) );

* Add ALTER TABLE command to change table ownership
Dibs on this.

--
Mark Hollomon
mhh(at)mindspring(dot)com

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Meskes 2000-09-07 16:22:30 Re: Where is ./configure?
Previous Message Jan Wieck 2000-09-07 09:50:13 Re: Tom Lane