- Aug 11, 2006
-
-
Bruce Momjian authored
-
Bruce Momjian authored
Allow conversion from perl to postgresql array in OUT parameters. Second, allow hash form output from procedures with one OUT argument. Pavel Stehule
-
Bruce Momjian authored
-
Bruce Momjian authored
Ian Barwick
-
Bruce Momjian authored
< * Allow encoding on a per-column basis > * Allow encoding on a per-column basis optionally using the ICU library: > http://archives.postgresql.org/pgsql-patches/2005-08/msg00309.php > http://archives.postgresql.org/pgsql-patches/2006-03/msg00233.php
-
- Aug 09, 2006
-
-
Bruce Momjian authored
> > > Features We Do _Not_ Want > ========================= > > * All backends running as threads in a single process (not want) > > This eliminates the process protection we get from the current setup. > Thread creation is usually the same overhead as process creation on > modern systems, so it seems unwise to use a pure threaded model. > > * Optimizer hints (not want) > > Optimizer hints are used to work around problems in the optimizer. We > would rather have the problems reported and fixed. > http://archives.postgresql.org/pgsql-hackers/2006-08/msg00506.php
-
Bruce Momjian authored
< A package would be a schema with public/private variables, > A package would be a schema with session-local variables, > http://archives.postgresql.org/pgsql-hackers/2006-08/msg00384.php
-
Bruce Momjian authored
< A package would be a schema with its own variables, < private functions, and initialization functions. It > A package would be a schema with public/private variables, > public/private functions, and initialization functions. It
-
Bruce Momjian authored
< private functions, and initialization functions > private functions, and initialization functions. It > is also possible to implement these capabilities > in all schemas and not use a separate "packages" > syntax at all.
-
Bruce Momjian authored
< o COPY FROM STDIN not implemented because not useful? > o Implement COPY FROM STDIN
- Aug 08, 2006
-
-
Tom Lane authored
loaded libraries: call functions _PG_init() and _PG_fini() if the library defines such symbols. Hence we no longer need to specify an initialization function in preload_libraries: we can assume that the library used the _PG_init() convention, instead. This removes one source of pilot error in use of preloaded libraries. Original patch by Ralf Engelschall, preload_libraries changes by me.
-
Bruce Momjian authored
-
Bruce Momjian authored
> > A package would be a schema with its own variables, > private functions, and initialization functions >
-
Bruce Momjian authored
< o Add Oracle-style packages > o Add Oracle-style packages (Pavel) > * Pavel is Pavel Stehule <pavel.stehule@hotmail.com>
-
Bruce Momjian authored
< o Automatically force archiving of partially-filled WAL files when > o -Automatically force archiving of partially-filled WAL files when < < Doing this will allow administrators to know more easily when < the archive contains all the files needed for point-in-time < recovery. < http://archives.postgresql.org/pgsql-patches/2005-04/msg00121.php < < o Add reporting of the current WAL file and offset, perhaps as > o -Add reporting of the current WAL file and offset, perhaps as < < The offset allows parts of a WAL file to be archived using < an external program. <
-
Michael Meskes authored
-
Bruce Momjian authored
< * Allow protocol-level BIND parameter values to be logged < < http://archives.postgresql.org/pgsql-hackers/2006-02/msg00165.php > * -Allow protocol-level BIND parameter values to be logged, if text mode
-
Bruce Momjian authored
o print user name for all o print portal name if defined for all o print query for all o reduce log_statement header to single keyword o print bind parameters as DETAIL if text mode
-
- Aug 06, 2006
-
-
Tom Lane authored
to happen automatically during pg_stop_backup(). Add some functions for interrogating the current xlog insertion point and for easily extracting WAL filenames from the hex WAL locations displayed by pg_stop_backup and friends. Simon Riggs with some editorialization by Tom Lane.
-
- Aug 04, 2006
-
-
Bruce Momjian authored
-
- Aug 03, 2006
-
-
Tom Lane authored
the DROP pass rather than the ADD_CONSTR pass. On examining the code I think this was just an oversight rather than intentional, and it seems to satisfy the principle of least surprise better than the alternative solution that was discussed. Add an example to the ref page showing how to do ALTER TYPE and update the default in one command. Per gripe from Markus Bertheau that that wasn't possible.
-
- Aug 02, 2006
-
-
Tom Lane authored
as grantees, not PUBLIC ... and you can't say GROUP either. Noted by Brian Hurt.
-
Bruce Momjian authored
< o Add COPY TO STDIN / STDOUT handling > o Add COPY TO STDIN handling
-
Bruce Momjian authored
> o In rules, allow VALUES() to contain a mixture of 'old' and 'new' > references
-
Bruce Momjian authored
o -Allow INSERT INTO tab (col1, ..) VALUES (val1, ..), (val2, ..)
-
- Aug 01, 2006
-
-
Alvaro Herrera authored
of the text where appropiate.
-
Bruce Momjian authored
if table creation failed (the table already exists). Martin Pitt
-
Bruce Momjian authored
< o %Allow pg_dump to use multiple -t and -n switches [pg_dump] < < http://archives.postgresql.org/pgsql-patches/2006-01/msg00190.php < > o -Allow pg_dump to use multiple -t and -n switches, exclusion > ability, and regular expression object matching
-
Bruce Momjian authored
-
Bruce Momjian authored
and -N options to exclude objects. Also support regular expressions for option object names. Greg Sabino Mullane
-
Bruce Momjian authored
Joshua D. Drake Robert Treat
-
Bruce Momjian authored
> * Consider compressed annealing to search for query plans > > This might replace GEQO, http://sixdemonbag.org/Djinni.
-
- Jul 31, 2006
-
-
Tom Lane authored
(table or index) before trying to open its relcache entry. This fixes race conditions in which someone else commits a change to the relation's catalog entries while we are in process of doing relcache load. Problems of that ilk have been reported sporadically for years, but it was not really practical to fix until recently --- for instance, the recent addition of WAL-log support for in-place updates helped. Along the way, remove pg_am.amconcurrent: all AMs are now expected to support concurrent update.
-
Tom Lane authored
created in the bootstrap phase proper, rather than added after-the-fact by initdb. This is cleaner than before because it allows us to retire the undocumented ALTER TABLE ... CREATE TOAST TABLE command, but the real reason I'm doing it is so that toast tables of shared catalogs will now have predetermined OIDs. This will allow a reasonably clean solution to the problem of locking tables before we load their relcache entries, to appear in a forthcoming patch.
-
Alvaro Herrera authored
-
- Jul 30, 2006
-
-
Bruce Momjian authored
> * Consider detoasting keys before sorting
-
- Jul 29, 2006
-
-
Bruce Momjian authored
> * Add column to pg_stat_activity that shows the progress of long-running > commands like CREATE INDEX and VACUUM
-