Re: [HACKERS] TODO list comments

2005-08-26 Thread Bruce Momjian

Great updates!  Let me comment on each one.

 I made a pass over the TODO list to see what was out of date.
 
  * Allow administrators to safely terminate individual sessions either
via an SQL function or SIGTERM 
  
Currently SIGTERM of a backend can lead to lock table corruption.
 
 This comment may be out of date.  Suggest
 
   Lock table corruption following SIGTERM of an individual backend
   has been reported in 8.0.  A possible cause is fixed in 8.1, but
   it is unknown whether other trouble spots exist.  This item is
   mainly a matter of doing adequate testing rather than of writing
   any new code.

Done.

 
  o Allow postgresql.conf values to be set so they can not be changed
by the user
 
 Is that really a good idea?  The ones that are unsafe are restricted already.

Well, a typical case would be log_statement, but I see that is
super-user now.  I guess we are OK, removed.  If we get more problems,
we can re-add something later.

  * %Remove Money type, add money formatting for decimal type
 
 There's a fair-size contingent that doesn't want Money removed
 completely, but just reimplemented as an I/O wrapper around type
 numeric.  Maybe that's even what you mean by the TODO item, but
 it's not clear.  Please at least mention the alternative.

Updated:

* Improve the MONEY data type

  Change the MONEY data type to use DECIMAL internally, with special
  locale-aware output formatting.


  o %Allow MIN()/MAX() on arrays
 
 This is done.

OK.

  o Modify array literal representation to handle array index lower bound
of other than one
 
 This too.

OK.

 
  o Add security checking for large objects
  
Currently large objects entries do not have owners. Permissions can
only be set at the pg_largeobject table level.
 
 This comment is wrong: trying to set the permissions on pg_largeobject
 would have no effect whatsoever on the lo_xxx functions, so there is not
 even a partial solution available now.

Oh, comment removed.

  o Auto-delete large objects when referencing row is deleted
 
 This should note that contrib/lo already offers a solution.

Done.

  * %Have views on temporary tables exist in the temporary namespace
  * Allow temporary views on non-temporary tables
 
 Both of these are done in 8.1.

OK.

  * %Allow RULE recompilation
 
 Eh?  Perhaps you meant automatically regenerate cached plans when
 needed, in which case it's redundant with the Dependency Checking
 entries.  Whatever it means, this doesn't seem a particularly simple
 item.

Agreed, updated to:

* Allow VIEW/RULE recompilation when the underlying tables change

  * %Allow TRUNCATE ... CASCADE/RESTRICT
 
 Huh?  What would that do?

I assume it is just like DELETE CASCADE, but it TRUNCATES rather than
DELETE.  Description added.

  * Make row-wise comparisons work per SQL spec
 
 This could probably be marked as a % item.

Done.

  o Currently the system uses the operating system COPY command to
create a new database. Add ON COMMIT capability to CREATE TABLE AS
SELECT
 
 This seems a bit garbled, and anyway the first part is done.

Yep, garbled.  I have removed the first part.

  o %Add ALTER DOMAIN TYPE
 
 To do what, exactly?  This is unclear.

I assume it would allow the underlying data type to be changed.  Updated
text:

o Add ALTER DOMAIN to modify the underlying data type

  o -Allow objects to be moved to different schemas
 
 This is only partly done --- the 8.1 patch didn't cover all object types.

Updated to:

o Add missing object types for ALTER ... SET SCHEMA


  o %Disallow dropping of an inherited constraint
  ...
  o %Prevent child tables from altering constraints like CHECK that were
inherited from the parent table
 
 These seem to be duplicates, or at least in need of merging.

Merged and updated:

o %Prevent child tables from altering or dropping constraints
  like CHECK that were inherited from the parent table

  o Handle references to temporary tables that are created, destroyed,
then recreated during a session, and EXECUTE is not used
  
This requires the cached PL/PgSQL byte code to be invalidated when
an object referenced in the function is changed.
 
 This is redundant with the Dependency Checking item about regenerating
 cached plans.

Removed and description added to dependency item:

* Track dependencies in function bodies and recompile/invalidate

  This is particularly important for references to temporary tables
  in PL/PgSQL because PL/PgSQL caches query plans.  The only workaround
  in PL/PgSQL is to use EXECUTE.

  o Add table function support to pltcl, plperl, plpython?
 
 Isn't this done for plperl?

Right, plperl removed.

  o Allow PL/pgSQL to name columns by ordinal position, e.g. rec.(3)
 
 This doesn't 

Re: [HACKERS] TODO list comments

2005-08-26 Thread Bruce Momjian
Alvaro Herrera wrote:
 On Thu, Aug 25, 2005 at 01:53:32PM -, Greg Sabino Mullane wrote:
 
  Tom Lane asked:
  
 o Improve psql's handling of multi-line queries
  
   Uh, what's wrong with it?  This item seems far too vague.
  
  I think perhaps this means adding multi-line support to
  the tab-completion? Only thing I can think of, cause other
  than that, multi-line queries work just fine.
 
 The saved history is also not cool about multiline queries.  If you
 enter them interactively (or by pasting), they are entered as several
 entries.  If you edit them with \e, they are entered as a single unit.

TODO updated:

o Improve psql's handling of multi-line queries

  Currently, while \e saves a single query as one entry, interactive
  queries are saved one line at a time.  Ideally all queries
  whould be saved like \e does.

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

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [HACKERS] TODO list comments

2005-08-26 Thread Bruce Momjian
Hannu Krosing wrote:
 On K, 2005-08-24 at 21:58 -0400, Tom Lane wrote:
   * %Allow TRUNCATE ... CASCADE/RESTRICT
  
  Huh?  What would that do?
 
 Maybe this was meant truncating of tables with dependent foreign keys ?
 
 AFAIR this was solved by allowing truncating several tables in one
 command even if they have FK relationships between themselves.

Yes, but I can imagine allowing a CASCADE behavior as well.

  This is only partly done --- the 8.1 patch didn't cover all object types.
  
 o %Disallow dropping of an inherited constraint
   ...
 o %Prevent child tables from altering constraints like CHECK that were
   inherited from the parent table
  
  These seem to be duplicates, or at least in need of merging.
 
 It should probably mention about weird inheritance behaviour of CREATE
 CONSTRAINT ON ONLY tablename - it is not propagated to existing child
 tables, but is inherited when creating new ones.

I am not sure on that one because the table does have the constraint at
the time the child is created.  Comments?

 Also, I don't think this should be done at all, at least not before we
 have proper partitioned table support ready. I could live with it
 creating a warning about not being future-compatible.

Right, TODO item removed.

 o Handle references to temporary tables that are created, destroyed,
   then recreated during a session, and EXECUTE is not used
   
   This requires the cached PL/PgSQL byte code to be invalidated when
   an object referenced in the function is changed.
  
  This is redundant with the Dependency Checking item about regenerating
  cached plans.
 
 Or maybe not completely, depending on how you do it. 

Well, I beefed up the item:

* Track dependencies in function bodies and recompile/invalidate

  This is particularly important for references to temporary tables
  in PL/PgSQL because PL/PgSQL caches query plans.  The only workaround
  in PL/PgSQL is to use EXECUTE.

 If temp table itself is created inside the same pl/pgsql function, then
 there could still be a way to do the planning/optimising only once and
 then substitute temp table oids when running the function. 
 
 The table structure in this case is quaranteed to be the same during
 each run of the function, it's just that the temp table and index oids
 should be treated as local variables.

Interesting approach but is it worth the added complexity?  One issue
this does bring up is that functions themselves might invalidate their
own cached query plan by dropping a table and receating it.  In those
cases, your solution would be the only valid one, or throw an error.

I added some more text:

* Track dependencies in function bodies and recompile/invalidate

  This is particularly important for references to temporary tables
  in PL/PgSQL because PL/PgSQL caches query plans.  The only workaround
  in PL/PgSQL is to use EXECUTE.  One complexity is that a function
  might itself drop and recreate dependent tables, causing it to
  invalidate its own query plan.

 Done this way, it gives real benefits in terms of cached query plans,
 instead of just preventing newcomers from shooting themselves in foot by
 not using EXECUTE.
 
   * Improve speed with indexes
   
 For large table adjustements during vacuum, it is faster to reindex
 rather than update the index.
  
  This applies only to VACUUM FULL, so it probably needs to be reworded.
 
 In case we implement concurrent/non-blocking CREATE INDEX at some point,
 this might be a good idea for lazy VACUUM as well.

Perhaps.

 And it may make more sense to do CLUSTER instead of VACUUM FULL in at
 least some of these cases.

Cluster modifies the heap while reindex does not.  This makes cluster a
much heavier operation.

 (btw. CLUSTER seems to be another function which my concurrent vacuuming
 patch should be extended to cover, at least on client side, like
 CREATE INDEX)

Not sure.

   * Auto-vacuum
   
 o %Suggest VACUUM FULL if a table is nearly empty
  
  It seems like a fairly bad idea for auto-vacuum to do a VACUUM FULL
  ever, given the locking effects.  And how is a background daemon going
  to suggest anything?  It could write to the postmaster log but it's
  entirely likely the user would never notice.
 
 With current implementations of commands, doing (some equivalent of)
 CLUSTER here seems a better idea than VACUUM FULL, as it also un-bloats
 indexes. Not sure of of transactional behaviour though.

Not sure, CLUSTER is still heavier.  That doesn't mean it shouldn't be
used, but the administrator should automatically consider CLUSTER in
place of VACUUM FULL for large updates.

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

Re: [HACKERS] TODO list comments

2005-08-26 Thread Bruce Momjian
Jim C. Nasby wrote:
 I *think* this is reffering to how pg_dump makes some assumptions about
 what things are system objects.
 
 http://archives.postgresql.org/pgsql-committers/2005-08/msg00203.php
 doesn't help a heck of a lot...
 
 Can we add an interface to the TODO list that contains search links back
 to the mailing lists?

Yes, that would be nice, though some times the threads are pretty long
and I try to digest the agreed-upon solution.  Where would we put the
URLs?  In the TODO file?

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

---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings


Re: [HACKERS] TODO list comments

2005-08-26 Thread Bruce Momjian
Andrew Dunstan wrote:
 
 
 Tom Lane wrote:
 
 Or perhaps use a different separator:
 
 junk=# select * from xyz;
  id |name|  address  | del_addr 
 ++---+--
   1 | Joe Bloggs | 1 Hindhead Villas,| 2 The Laurels,
 ++ Newport,  + Swinkley,
 ++ Gwent + XX3 5CX
 (1 row)
   
 
 
 That's a terrific idea, and, incidentally, just the sort of project that 
 might well suit a beginning hacker, since the code is pretty isolated.
 
 Not sure how hard this would be to program, or what sort of overhead it
 might impose to check for the case.  My recollection is that psql's
 table-layout code is pretty slow and ugly already ...
 
 
   
 
 
 If people want speed they shouldn't use psql as a client anyway. I don't 
 see this as much of an obstacle.

Added to TODO:

o Allow multi-line column values to align in the proper columns

  If the second output column value is 'a\nb', the 'b' should appear
  in the second display column, rather than the first column as it
  does now.

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

---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


Re: [HACKERS] TODO list comments

2005-08-26 Thread Jim C. Nasby
On Fri, Aug 26, 2005 at 03:44:18PM -0400, Bruce Momjian wrote:
 Jim C. Nasby wrote:
  I *think* this is reffering to how pg_dump makes some assumptions about
  what things are system objects.
  
  http://archives.postgresql.org/pgsql-committers/2005-08/msg00203.php
  doesn't help a heck of a lot...
  
  Can we add an interface to the TODO list that contains search links back
  to the mailing lists?
 
 Yes, that would be nice, though some times the threads are pretty long
 and I try to digest the agreed-upon solution.  Where would we put the
 URLs?  In the TODO file?

Yeah, the digestification is good, and I hope it continues. But it's
also good to be able to refer back to the original thread in it's
entirety. My thought was to make the TODO item itself a link to the
search (or ideally the thread itself). The advantage of just linking to
the search is that would allow a clever CGI to just parse through the
TODO and linkify the TODO items.
-- 
Jim C. Nasby, Sr. Engineering Consultant  [EMAIL PROTECTED]
Pervasive Softwarehttp://pervasive.com512-569-9461

---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster


Re: [HACKERS] TODO list comments

2005-08-25 Thread Michael Glaesemann


On Aug 25, 2005, at 10:58 AM, Tom Lane wrote:


* %Remove CREATE CONSTRAINT TRIGGER

  This was used in older releases to dump referential integrity
  constraints.



Do we really want to remove it, and thereby guarantee we can't load
dumps from those old releases?


Also, I believe CONSTRAINT TRIGGERS are the only way to provide  
transaction level (rather than statement level) referential  
integrity. I've used this in the past. The SQL command reference page  
mentions that it's not for general use, but it'd be a shame to remove  
it before there's an alternative way to provide transaction level  
referential integrity.


Michael Glaesemann
grzm myrealbox com



---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
  subscribe-nomail command to [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly


Re: [HACKERS] TODO list comments

2005-08-25 Thread Hannu Krosing
On K, 2005-08-24 at 21:58 -0400, Tom Lane wrote:
  * %Allow TRUNCATE ... CASCADE/RESTRICT
 
 Huh?  What would that do?

Maybe this was meant truncating of tables with dependent foreign keys ?

AFAIR this was solved by allowing truncating several tables in one
command even if they have FK relationships between themselves.


 This is only partly done --- the 8.1 patch didn't cover all object types.
 
  o %Disallow dropping of an inherited constraint
  ...
  o %Prevent child tables from altering constraints like CHECK that were
inherited from the parent table
 
 These seem to be duplicates, or at least in need of merging.

It should probably mention about weird inheritance behaviour of CREATE
CONSTRAINT ON ONLY tablename - it is not propagated to existing child
tables, but is inherited when creating new ones.

Also, I don't think this should be done at all, at least not before we
have proper partitioned table support ready. I could live with it
creating a warning about not being future-compatible.

  o Handle references to temporary tables that are created, destroyed,
then recreated during a session, and EXECUTE is not used
  
This requires the cached PL/PgSQL byte code to be invalidated when
an object referenced in the function is changed.
 
 This is redundant with the Dependency Checking item about regenerating
 cached plans.

Or maybe not completely, depending on how you do it. 

If temp table itself is created inside the same pl/pgsql function, then
there could still be a way to do the planning/optimising only once and
then substitute temp table oids when running the function. 

The table structure in this case is quaranteed to be the same during
each run of the function, it's just that the temp table and index oids
should be treated as local variables.

Done this way, it gives real benefits in terms of cached query plans,
instead of just preventing newcomers from shooting themselves in foot by
not using EXECUTE.

  * Improve speed with indexes
  
For large table adjustements during vacuum, it is faster to reindex
rather than update the index.
 
 This applies only to VACUUM FULL, so it probably needs to be reworded.

In case we implement concurrent/non-blocking CREATE INDEX at some point,
this might be a good idea for lazy VACUUM as well.

And it may make more sense to do CLUSTER instead of VACUUM FULL in at
least some of these cases.

(btw. CLUSTER seems to be another function which my concurrent vacuuming
patch should be extended to cover, at least on client side, like
CREATE INDEX)

  * Auto-vacuum
  
  o %Suggest VACUUM FULL if a table is nearly empty
 
 It seems like a fairly bad idea for auto-vacuum to do a VACUUM FULL
 ever, given the locking effects.  And how is a background daemon going
 to suggest anything?  It could write to the postmaster log but it's
 entirely likely the user would never notice.

With current implementations of commands, doing (some equivalent of)
CLUSTER here seems a better idea than VACUUM FULL, as it also un-bloats
indexes. Not sure of of transactional behaviour though.

-- 
Hannu Krosing [EMAIL PROTECTED]


---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


Re: [HACKERS] TODO list comments

2005-08-25 Thread Robert Treat
On Wed, 2005-08-24 at 21:58, Tom Lane wrote:
  o Add pg_dumpall custom format dumps.
  
This is probably best done by combining pg_dump and pg_dumpall
into a single binary.
 
 This is probably obsoleted by events, too.  Now that we can dump blobs
 in text mode, I see no reason that we ever need to do this.
 pg_restore's only real reason to live is to support selective restore
 (ie, pulling out just a few objects from an existing dump) and I do not
 see that you need that for pg_dumpall dumps.
 

Being able to restore just the database users without restoring all
databases?  (There are other ways that could be accomplished, like
adding user information to pg_dump, but it's one scenario anyway) 

Actually the argument that you would have to do both a pg_dumpall of the
cluster and a pg_dump of each database in order to obtain this
functionality seems so user unfriendly it seems like something to persue
on those grounds alone (imho).


Robert Treat
-- 
Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL


---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [HACKERS] TODO list comments

2005-08-25 Thread Matt Miller
On Thu, 2005-08-25 at 15:50 +0900, Michael Glaesemann wrote:
  * %Remove CREATE CONSTRAINT TRIGGER
 
  Do we really want to remove it,
 
 Also, I believe CONSTRAINT TRIGGERS are the only way to provide  
 transaction level (rather than statement level) referential  
 integrity.

Don't deferrable foreign keys give you transaction-level referential
integrity?  From the SET CONSTRAINTS doc:

Synopsis
SET CONSTRAINTS { ALL | name [, ...] } { DEFERRED | IMMEDIATE }
Description
SET CONSTRAINTS sets the behavior of constraint checking within the
current transaction. IMMEDIATE constraints are checked at the end of
each statement. DEFERRED constraints are not checked until transaction
commit.



---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly


Re: [HACKERS] TODO list comments

2005-08-25 Thread Alvaro Herrera
On Thu, Aug 25, 2005 at 01:53:32PM -, Greg Sabino Mullane wrote:

 Tom Lane asked:
 
o Improve psql's handling of multi-line queries
 
  Uh, what's wrong with it?  This item seems far too vague.
 
 I think perhaps this means adding multi-line support to
 the tab-completion? Only thing I can think of, cause other
 than that, multi-line queries work just fine.

The saved history is also not cool about multiline queries.  If you
enter them interactively (or by pasting), they are entered as several
entries.  If you edit them with \e, they are entered as a single unit.

It would be also nice to have M-# to work well -- currently it inserts a
#, which works in bash but is obviously wrong in psql.

-- 
Alvaro Herrera (alvherre[a]alvh.no-ip.org)
Los románticos son seres que mueren de deseos de vida

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly


Re: [HACKERS] TODO list comments

2005-08-25 Thread Greg Sabino Mullane

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Tom Lane asked:

   o Improve psql's handling of multi-line queries

 Uh, what's wrong with it?  This item seems far too vague.

I think perhaps this means adding multi-line support to
the tab-completion? Only thing I can think of, cause other
than that, multi-line queries work just fine.

- --
Greg Sabino Mullane [EMAIL PROTECTED]
PGP Key: 0x14964AC8 200508250952
https://www.biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8
-BEGIN PGP SIGNATURE-

iEYEARECAAYFAkMNzTAACgkQvJuQZxSWSshB8gCgvOU3rZi1uwFnwXO2zVz6KjUG
TUwAn3VoHGbqGkP1bRItMgVFE3vPQkkf
=rA0w
-END PGP SIGNATURE-



---(end of broadcast)---
TIP 4: Have you searched our list archives?

   http://archives.postgresql.org


Re: [HACKERS] TODO list comments

2005-08-25 Thread Tom Lane
Oliver Elphick olly@lfix.co.uk writes:
 It would be better to show the columns aligned (perhaps without showing
 separators for other columns so as not to give the impression that the
 other columns contain null or empty strings):

 junk=# select * from xyz;
  id |name|  address  | del_addr 
 ++---+--
   1 | Joe Bloggs | 1 Hindhead Villas,| 2 The Laurels,
  | Newport,  | Swinkley,
  | Gwent | XX3 5CX
 (1 row)

I think the above is unacceptable because it looks indistinguishable
from a valid but quite different dataset.  (No, the 1 row doesn't make
it better; as soon as there's more than one row you can't tell what you
have.  And leaving out the first | doesn't help if all the columns are
multiline.)

It might be OK without any separators on the added lines, though:

 id |name|  address  | del_addr 
++---+--
  1 | Joe Bloggs | 1 Hindhead Villas,| 2 The Laurels,
   Newport,Swinkley,
   Gwent   XX3 5CX
(1 row)

Or perhaps use a different separator:

junk=# select * from xyz;
 id |name|  address  | del_addr 
++---+--
  1 | Joe Bloggs | 1 Hindhead Villas,| 2 The Laurels,
++ Newport,  + Swinkley,
++ Gwent + XX3 5CX
(1 row)

Not sure how hard this would be to program, or what sort of overhead it
might impose to check for the case.  My recollection is that psql's
table-layout code is pretty slow and ugly already ...

regards, tom lane

---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
   choose an index scan if your joining column's datatypes do not
   match


Re: [HACKERS] TODO list comments

2005-08-25 Thread Andrew Dunstan



Tom Lane wrote:


Or perhaps use a different separator:

junk=# select * from xyz;
id |name|  address  | del_addr 
++---+--

 1 | Joe Bloggs | 1 Hindhead Villas,| 2 The Laurels,
   ++ Newport,  + Swinkley,
   ++ Gwent + XX3 5CX
(1 row)
 



That's a terrific idea, and, incidentally, just the sort of project that 
might well suit a beginning hacker, since the code is pretty isolated.



Not sure how hard this would be to program, or what sort of overhead it
might impose to check for the case.  My recollection is that psql's
table-layout code is pretty slow and ugly already ...


 



If people want speed they shouldn't use psql as a client anyway. I don't 
see this as much of an obstacle.


cheers

andrew

---(end of broadcast)---
TIP 6: explain analyze is your friend


Re: [HACKERS] TODO list comments

2005-08-25 Thread Jim C. Nasby
On Wed, Aug 24, 2005 at 09:58:04PM -0400, Tom Lane wrote:
  * %Allow RULE recompilation
 
 Eh?  Perhaps you meant automatically regenerate cached plans when
 needed, in which case it's redundant with the Dependency Checking
 entries.  Whatever it means, this doesn't seem a particularly simple
 item.

Hrm... I read that as allowing CREATE OR REPLACE on rules, but of course
that already exists.

http://lnk.nu/search.postgresql.org/3mt.search

  * %Allow TRUNCATE ... CASCADE/RESTRICT
 
 Huh?  What would that do?

http://archives.postgresql.org/pgsql-hackers/2003-08/msg01045.php

  o %Add ALTER DOMAIN TYPE
 
 To do what, exactly?  This is unclear.

http://archives.postgresql.org/pgsql-hackers/2004-05/msg00985.php

  o Remove unnecessary abstractions in pg_dump source code
 
 Like which?

I *think* this is reffering to how pg_dump makes some assumptions about
what things are system objects.

http://archives.postgresql.org/pgsql-committers/2005-08/msg00203.php
doesn't help a heck of a lot...

Can we add an interface to the TODO list that contains search links back
to the mailing lists?
-- 
Jim C. Nasby, Sr. Engineering Consultant  [EMAIL PROTECTED]
Pervasive Softwarehttp://pervasive.com512-569-9461

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
   subscribe-nomail command to [EMAIL PROTECTED] so that your
   message can get through to the mailing list cleanly


Re: [HACKERS] TODO list comments

2005-08-25 Thread Michael Glaesemann


On Aug 25, 2005, at 11:29 PM, Matt Miller wrote:



On Thu, 2005-08-25 at 15:50 +0900, Michael Glaesemann wrote:



* %Remove CREATE CONSTRAINT TRIGGER




Do we really want to remove it,




Also, I believe CONSTRAINT TRIGGERS are the only way to provide
transaction level (rather than statement level) referential
integrity.




Don't deferrable foreign keys give you transaction-level referential
integrity?  From the SET CONSTRAINTS doc:



Sorry, I misspoke. What I'm thinking of is not referential integrity  
in the sense of foreign keys, but assertions, which PostgreSQL does  
not yet support.


Say for example you have a table that contains time periods marked by  
a start_date and an end_date and you want there to be no gaps between  
the different time periods in the table for a given key. When doing  
updates, deletes, or inserts on this table, you'll need to check to  
make sure there are no gaps when the transaction is finished.  
However, there may indeed be gaps during the transaction as  
start_dates and end_dates are updated. Triggers can be written to  
enforce this kind of integrity, but they'll only work if they're  
deferrable.


Michael Glaesemann
grzm myrealbox com




---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster


[HACKERS] TODO list comments

2005-08-24 Thread Tom Lane
I made a pass over the TODO list to see what was out of date.

 * Allow administrators to safely terminate individual sessions either
   via an SQL function or SIGTERM 
 
   Currently SIGTERM of a backend can lead to lock table corruption.

This comment may be out of date.  Suggest

Lock table corruption following SIGTERM of an individual backend
has been reported in 8.0.  A possible cause is fixed in 8.1, but
it is unknown whether other trouble spots exist.  This item is
mainly a matter of doing adequate testing rather than of writing
any new code.

   o Allow postgresql.conf values to be set so they can not be changed
 by the user

Is that really a good idea?  The ones that are unsafe are restricted already.

 * %Remove Money type, add money formatting for decimal type

There's a fair-size contingent that doesn't want Money removed
completely, but just reimplemented as an I/O wrapper around type
numeric.  Maybe that's even what you mean by the TODO item, but
it's not clear.  Please at least mention the alternative.

   o %Allow MIN()/MAX() on arrays

This is done.

   o Modify array literal representation to handle array index lower bound
 of other than one

This too.

   o Add security checking for large objects
 
 Currently large objects entries do not have owners. Permissions can
 only be set at the pg_largeobject table level.

This comment is wrong: trying to set the permissions on pg_largeobject
would have no effect whatsoever on the lo_xxx functions, so there is not
even a partial solution available now.

   o Auto-delete large objects when referencing row is deleted

This should note that contrib/lo already offers a solution.

 * %Have views on temporary tables exist in the temporary namespace
 * Allow temporary views on non-temporary tables

Both of these are done in 8.1.

 * %Allow RULE recompilation

Eh?  Perhaps you meant automatically regenerate cached plans when
needed, in which case it's redundant with the Dependency Checking
entries.  Whatever it means, this doesn't seem a particularly simple
item.

 * %Allow TRUNCATE ... CASCADE/RESTRICT

Huh?  What would that do?

 * Make row-wise comparisons work per SQL spec

This could probably be marked as a % item.

   o Currently the system uses the operating system COPY command to
 create a new database. Add ON COMMIT capability to CREATE TABLE AS
 SELECT

This seems a bit garbled, and anyway the first part is done.

   o %Add ALTER DOMAIN TYPE

To do what, exactly?  This is unclear.

   o -Allow objects to be moved to different schemas

This is only partly done --- the 8.1 patch didn't cover all object types.

   o %Disallow dropping of an inherited constraint
 ...
   o %Prevent child tables from altering constraints like CHECK that were
 inherited from the parent table

These seem to be duplicates, or at least in need of merging.

   o Handle references to temporary tables that are created, destroyed,
 then recreated during a session, and EXECUTE is not used
 
 This requires the cached PL/PgSQL byte code to be invalidated when
 an object referenced in the function is changed.

This is redundant with the Dependency Checking item about regenerating
cached plans.

   o Add table function support to pltcl, plperl, plpython?

Isn't this done for plperl?

   o Allow PL/pgSQL to name columns by ordinal position, e.g. rec.(3)

This doesn't seem like an amazingly good idea; would prefer to see a way
to get the column name list and use names dynamically.  Numbers have all
the same problems as SELECT * ...

   o Add MOVE to PL/pgSQL

This should be generalized: upgrade plpgsql cursor support to have all
the FETCH and MOVE options of the main language.

   o Add support for polymorphic arguments and return types to plperl

I think all the PLs except plpgsql need this.

Also, all the PLs except plpgsql are well behind the curve on supporting
parameter names and OUT parameters.  Please add TODO item(s) for these.

 * Allow libpq to access SQLSTATE so pg_ctl can test for connection failure
 
   This would be used for checking if the server is up.

Huh?  What has SQLSTATE got to do with connection failure checking?

 * Have initdb set DateStyle based on locale?

Is this really a good idea?  Being standardized on ISO format seems like
a good thing to me, and encouraging people to adopt ambiguous formats as
default a very bad thing.  They can do it if they like, certainly, but
having initdb do it for them just seems like not the direction we want.

 * Add a schema option to createlang

This is superseded by events: createlang now puts the functions in
pg_catalog, and there doesn't seem any particularly good reason to
want to put them elsewhere.

   o Improve psql's handling of multi-line queries

Uh, what's wrong with it?  This item seems far too vague.

   o Add pg_dumpall 

Re: [HACKERS] TODO list comments

2005-08-24 Thread Kris Jurka



On Wed, 24 Aug 2005, Tom Lane wrote:


* Fetch heap pages matching index entries in sequential order

  Rather than randomly accessing heap pages based on index entries, mark
  heap pages needing access in a bitmap and do the lookups in sequential
  order. Another method would be to sort heap ctids matching the index
  before accessing the heap rows.


This is done (see bitmap index scans).



Will the optimizer ever choose this plan when dealing with only one index?

Kris Jurka

---(end of broadcast)---
TIP 1: if posting/reading through Usenet, please send an appropriate
  subscribe-nomail command to [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly


Re: [HACKERS] TODO list comments

2005-08-24 Thread Tom Lane
Kris Jurka [EMAIL PROTECTED] writes:
 On Wed, 24 Aug 2005, Tom Lane wrote:
 This is done (see bitmap index scans).

 Will the optimizer ever choose this plan when dealing with only one index?

Certainly.  It's actually likely to prefer a bitmap scan whenever the
query is estimated to fetch more than one percent or so of the table
(although if you are demanding ORDER BY the index order, the crossover
point is higher, since a bitmap scan doesn't deliver sorted output).

Something that probably ought to be on the Open Items list for 8.1
is whether the cost estimation for bitmap vs plain indexscan is OK.
It's entirely likely that we need to do some tweaking to get the
planner to make the right choice.

regards, tom lane

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq