OSDN Git Service

pg-rex/syncrep.git
16 years agoAllow ALTER SEQUENCE START WITH to change the recorded start_value of a
Tom Lane [Sat, 17 May 2008 01:20:39 +0000 (01:20 +0000)]
Allow ALTER SEQUENCE START WITH to change the recorded start_value of a
sequence.  This seems an obvious extension to the recent patch, and it
makes the code noticeably cleaner and more orthogonal.

16 years agoFix declarations of pthread functions, missed in recent commit.
Tom Lane [Fri, 16 May 2008 23:57:42 +0000 (23:57 +0000)]
Fix declarations of pthread functions, missed in recent commit.

16 years agoAdd a RESTART (without parameter) option to ALTER SEQUENCE, allowing a
Tom Lane [Fri, 16 May 2008 23:36:05 +0000 (23:36 +0000)]
Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing a
sequence to be reset to its original starting value.  This requires adding the
original start value to the set of parameters (columns) of a sequence object,
which is a user-visible change with potential compatibility implications;
it also forces initdb.

Also add hopefully-SQL-compatible RESTART/CONTINUE IDENTITY options to
TRUNCATE TABLE.  RESTART IDENTITY executes ALTER SEQUENCE RESTART for all
sequences "owned by" any of the truncated relations.  CONTINUE IDENTITY is
a no-op option.

Zoltan Boszormenyi

16 years agoReduce unnecessary PANIC to ERROR, improve a couple of comments.
Tom Lane [Fri, 16 May 2008 19:15:05 +0000 (19:15 +0000)]
Reduce unnecessary PANIC to ERROR, improve a couple of comments.

16 years agoRecent patch doesn't compile without <limits.h>
Tom Lane [Fri, 16 May 2008 18:35:38 +0000 (18:35 +0000)]
Recent patch doesn't compile without <limits.h>

16 years agoSuppress a possibly-uninitialized-variable warning. (I'm only seeing it
Tom Lane [Fri, 16 May 2008 18:34:51 +0000 (18:34 +0000)]
Suppress a possibly-uninitialized-variable warning.  (I'm only seeing it
on Apple's gcc and not my other machines, but still it seems worth
getting rid of.)

16 years agoImplement error checking for pthreads calls in thread-safe mode. They really
Magnus Hagander [Fri, 16 May 2008 18:30:53 +0000 (18:30 +0000)]
Implement error checking for pthreads calls in thread-safe mode. They really
should always succeed, but in the likely event of a failure we would
previously fall through *without locking* - the new code will exit(1).

Printing the error message on stderr will not work for all applications, but
it's better than nothing at all - and our API doesn't provide a way to return
the error to the caller.

16 years agoSuppress compiler warning induced by recent header file refactoring.
Tom Lane [Fri, 16 May 2008 17:31:17 +0000 (17:31 +0000)]
Suppress compiler warning induced by recent header file refactoring.

16 years agoUpdate contrib for tsearch changes.
Tom Lane [Fri, 16 May 2008 17:26:07 +0000 (17:26 +0000)]
Update contrib for tsearch changes.

16 years agoUpdate psql startup banner to be shorter, suggest "help" for help.
Bruce Momjian [Fri, 16 May 2008 17:17:00 +0000 (17:17 +0000)]
Update psql startup banner to be shorter, suggest "help" for help.

Add a few "help" entries.

Move \g help entry into "General".

Update psql version mismatch warning text.

Joshua D. Drake

16 years agoDone in TODO:
Bruce Momjian [Fri, 16 May 2008 17:03:40 +0000 (17:03 +0000)]
Done in TODO:

>  o -Have \l+ show database size, if permissions allow

16 years agoAdd detection of psql pager to trigger on wide output. Also add pager
Bruce Momjian [Fri, 16 May 2008 16:59:05 +0000 (16:59 +0000)]
Add detection of psql pager to trigger on wide output.  Also add pager
detection for wrapped lines or lines with newlines that need pager to
display.

16 years agoExtend GIN to support partial-match searches, and extend tsquery to support
Tom Lane [Fri, 16 May 2008 16:31:02 +0000 (16:31 +0000)]
Extend GIN to support partial-match searches, and extend tsquery to support
prefix matching using this facility.

Teodor Sigaev and Oleg Bartunov

16 years agoAdd localization support to ecpg.
Peter Eisentraut [Fri, 16 May 2008 15:20:04 +0000 (15:20 +0000)]
Add localization support to ecpg.

Author: Euler Taveira de Oliveira <euler@timbira.com>

16 years agoDone:
Bruce Momjian [Fri, 16 May 2008 02:23:44 +0000 (02:23 +0000)]
Done:

PL/pgSQL

>  o -Add CASE capability to language (already in SQL)

16 years agoPersuade GIN to react to control-C in a reasonable amount of time
Tom Lane [Fri, 16 May 2008 01:27:06 +0000 (01:27 +0000)]
Persuade GIN to react to control-C in a reasonable amount of time
while building a GIN index.

16 years agoSupport SQL/PSM-compatible CASE statement in plpgsql.
Tom Lane [Thu, 15 May 2008 22:39:49 +0000 (22:39 +0000)]
Support SQL/PSM-compatible CASE statement in plpgsql.

Pavel Stehule

16 years agoAdd code to eval_const_expressions() to support const-simplification of
Tom Lane [Thu, 15 May 2008 17:37:49 +0000 (17:37 +0000)]
Add code to eval_const_expressions() to support const-simplification of
CoerceViaIO nodes.  This improves the ability of the planner to deal with
cases where the node input is a constant.  Per bug #4170.

16 years agoAdd support for tracking call counts and elapsed runtime for user-defined
Tom Lane [Thu, 15 May 2008 00:17:41 +0000 (00:17 +0000)]
Add support for tracking call counts and elapsed runtime for user-defined
functions.

Note that because this patch changes FmgrInfo, any external C functions
you might be testing with 8.4 will need to be recompiled.

Patch by Martin Pihlak, some editorialization by me (principally, removing
tracking of getrusage() numbers)

16 years agoMove the "instr_time" typedef and associated macros into a new header
Tom Lane [Wed, 14 May 2008 19:10:29 +0000 (19:10 +0000)]
Move the "instr_time" typedef and associated macros into a new header
file portability/instr_time.h, and add a couple more macros to eliminate
some abstraction leakage we formerly had.  Also update psql to use this
header instead of its own copy of nearly the same code.

This commit in itself is just code cleanup and shouldn't change anything.
It lays some groundwork for the upcoming function-stats patch, though.

16 years agoReorgnize psql \? help output, to reduce the size of the "General"
Bruce Momjian [Wed, 14 May 2008 15:30:22 +0000 (15:30 +0000)]
Reorgnize psql \? help output, to reduce the size of the "General"
heading at the top;   broken into more sections now.

16 years agoFix a few warnings that have crept into CVS HEAD.
Bruce Momjian [Wed, 14 May 2008 15:16:27 +0000 (15:16 +0000)]
Fix a few warnings that have crept into CVS HEAD.

16 years agoRemove the special variable for open_sync_bit used in O_SYNC and O_DSYNC
Magnus Hagander [Wed, 14 May 2008 14:02:57 +0000 (14:02 +0000)]
Remove the special variable for open_sync_bit used in O_SYNC and O_DSYNC
modes, replacing it with a call to a function that derives it from the
sync_method variable, now that it has distinct values for these two cases.

This means that assign_xlog_sync_method() no longer changes any settings,
thus fixing the bug introduced in the change to use a guc enum for
wal_sync_method.

16 years agoMake the win32 implementation of getrusage() return EINVAL if being
Magnus Hagander [Wed, 14 May 2008 07:28:13 +0000 (07:28 +0000)]
Make the win32 implementation of getrusage() return EINVAL if being
asked for anything other than RUSAGE_SELF, since it's not supported.

This is never called anywhere in the code today, but might be in
the future.

Not backpatching, since it's not called anywhere today.

16 years agoRemove odd duplicate wording in psql pager section.
Bruce Momjian [Wed, 14 May 2008 04:07:01 +0000 (04:07 +0000)]
Remove odd duplicate wording in psql pager section.

16 years agoImprove plpgsql's RAISE command. It is now possible to attach DETAIL and
Tom Lane [Tue, 13 May 2008 22:10:30 +0000 (22:10 +0000)]
Improve plpgsql's RAISE command.  It is now possible to attach DETAIL and
HINT fields to a user-thrown error message, and to specify the SQLSTATE
error code to use.  The syntax has also been tweaked so that the
Oracle-compatible case "RAISE exception_name" works (though you won't get a
very nice error message if you just write that much).  Lastly, support
the Oracle-compatible syntax "RAISE" with no parameters to re-throw
the current error from within an EXCEPTION block.

In passing, allow the syntax SQLSTATE 'nnnnn' within EXCEPTION lists,
so that there is a way to trap errors with custom SQLSTATE codes.

Pavel Stehule and Tom Lane

16 years agoDon't try to close negative file descriptors, since this can cause
Magnus Hagander [Tue, 13 May 2008 20:53:52 +0000 (20:53 +0000)]
Don't try to close negative file descriptors, since this can cause
crashes on certain platforms. In particular, the MSVC runtime is known
to do this.

Fixes bug #4162, reported and diagnosed by Javier Pimas

16 years agoThis is the patch replace offnum++ by OffsetNumberNext, to be
Bruce Momjian [Tue, 13 May 2008 15:44:08 +0000 (15:44 +0000)]
This is the patch replace offnum++ by OffsetNumberNext, to be
consistent.  OffsetNumberNext() has some casting that makes it useful.

Fujii Masao

16 years agoChange \du to use the new printTable API, improving the situation of very wide
Alvaro Herrera [Tue, 13 May 2008 00:23:17 +0000 (00:23 +0000)]
Change \du to use the new printTable API, improving the situation of very wide
tables.

Brendan Jurd, with some help from me.

16 years agoFix a bug in the previous patch, which caused the title pointer to be used
Alvaro Herrera [Tue, 13 May 2008 00:14:11 +0000 (00:14 +0000)]
Fix a bug in the previous patch, which caused the title pointer to be used
before it was actually set.

16 years agoImprove psql's internal print.c code by introducing an actual print API.
Alvaro Herrera [Mon, 12 May 2008 22:59:58 +0000 (22:59 +0000)]
Improve psql's internal print.c code by introducing an actual print API.
Provides for better code readability, but mainly this is infrastructure changes
to allow further changes such as arbitrary footers on printed tables.  Also,
the translation status of each element in the table is more easily customized.

Brendan Jurd, with some editorialization by me.

16 years agoTodo done:
Bruce Momjian [Mon, 12 May 2008 20:50:52 +0000 (20:50 +0000)]
Todo done:

> * -Improve dead row detection during multi-statement transactions usage

16 years agoImprove snapshot manager by keeping explicit track of snapshots.
Alvaro Herrera [Mon, 12 May 2008 20:02:02 +0000 (20:02 +0000)]
Improve snapshot manager by keeping explicit track of snapshots.

There are two ways to track a snapshot: there's the "registered" list, which
is used for arbitrary long-lived snapshots; and there's the "active stack",
which is used for the snapshot that is considered "active" at any time.
This also allows users of snapshots to stop worrying about snapshot memory
allocation and freeing, and about using PG_TRY blocks around ActiveSnapshot
assignment.  This is all done automatically now.

As a consequence, this allows us to reset MyProc->xmin when there are no
more snapshots registered in the current backend, reducing the impact that
long-running transactions have on VACUUM.

16 years agoFix breakage by the wal_sync_method patch in installations that use
Magnus Hagander [Mon, 12 May 2008 19:45:23 +0000 (19:45 +0000)]
Fix breakage by the wal_sync_method patch in installations that use
O_DSYNC (specifically this broke all the Windows buildfarm members)

16 years agoCheck for non-existant connection in prepare statement handling.
Michael Meskes [Mon, 12 May 2008 16:29:04 +0000 (16:29 +0000)]
Check for non-existant connection in prepare statement handling.
Do not close files that weren't opened.

16 years agoDocument that "ROLLBACK TO savepoint" does not un-close cursors.
Alvaro Herrera [Mon, 12 May 2008 16:23:26 +0000 (16:23 +0000)]
Document that "ROLLBACK TO savepoint" does not un-close cursors.

16 years agoPut back bufmgr.h in bufpage.h -- it is needed by some macros.
Alvaro Herrera [Mon, 12 May 2008 16:06:10 +0000 (16:06 +0000)]
Put back bufmgr.h in bufpage.h -- it is needed by some macros.

Remove #include bufmgr.h from (most?) source files which already include
bufpage.h.

16 years agoReport which WAL sync method we are trying to change *to* when it fails,
Magnus Hagander [Mon, 12 May 2008 14:27:47 +0000 (14:27 +0000)]
Report which WAL sync method we are trying to change *to* when it fails,
not which one we had before (that worked, and thus is completley irrelevant)

16 years agoConvert wal_sync_method to guc enum.
Magnus Hagander [Mon, 12 May 2008 08:35:05 +0000 (08:35 +0000)]
Convert wal_sync_method to guc enum.

16 years agoRestructure some header files a bit, in particular heapam.h, by removing some
Alvaro Herrera [Mon, 12 May 2008 00:00:54 +0000 (00:00 +0000)]
Restructure some header files a bit, in particular heapam.h, by removing some
unnecessary #include lines in it.  Also, move some tuple routine prototypes and
macros to htup.h, which allows removal of heapam.h inclusion from some .c
files.

For this to work, a new header file access/sysattr.h needed to be created,
initially containing attribute numbers of system columns, for pg_dump usage.

While at it, make contrib ltree, intarray and hstore header files more
consistent with our header style.

16 years agoRemaining pieces of fix for contrib makefiles
Andrew Dunstan [Sat, 10 May 2008 15:30:11 +0000 (15:30 +0000)]
Remaining pieces of fix for contrib makefiles

16 years agoRestore psql's former behavior that padding spaces to the right of the last
Tom Lane [Sat, 10 May 2008 03:31:58 +0000 (03:31 +0000)]
Restore psql's former behavior that padding spaces to the right of the last
output column are not emitted.  (That change already caused more noise in
the regression test output files than I would like.)  Provide some needed
editorial help for comments, clean up code formatting.

16 years agoAdd URL for:
Bruce Momjian [Sat, 10 May 2008 01:50:51 +0000 (01:50 +0000)]
Add URL for:

        o Allow an existing index to be marked as a table's primary key
>
>    http://archives.postgresql.org/pgsql-hackers/2008-04/msg00500.php

16 years agoAdd to TODO:
Bruce Momjian [Sat, 10 May 2008 01:50:14 +0000 (01:50 +0000)]
Add to TODO:

>  o Allow an existing index to be marked as a table's primary key

16 years agoAdd URL for:
Bruce Momjian [Sat, 10 May 2008 01:40:09 +0000 (01:40 +0000)]
Add URL for:

* Add column to pg_stat_activity that shows the progress of long-running
  commands like CREATE INDEX and VACUUM
>
>   http://archives.postgresql.org/pgsql-patches/2008-04/msg00203.php
>

16 years agoUpdate alternative output regression files for new float8 test of power().
Bruce Momjian [Sat, 10 May 2008 01:04:59 +0000 (01:04 +0000)]
Update alternative output regression files for new float8 test of power().

16 years agoAdd TODO item:
Bruce Momjian [Sat, 10 May 2008 00:33:33 +0000 (00:33 +0000)]
Add TODO item:

>  o Clear table counters on TRUNCATE
>
>    http://archives.postgresql.org/pgsql-hackers/2008-04/msg00169.php

16 years agoTODOs done:
Bruce Momjian [Sat, 10 May 2008 00:25:08 +0000 (00:25 +0000)]
TODOs done:

>  o -Prevent parent tables from altering or dropping constraints
>  o -Prevent child tables from altering or dropping constraints

16 years agoChange the rules for inherited CHECK constraints to be essentially the same
Tom Lane [Fri, 9 May 2008 23:32:05 +0000 (23:32 +0000)]
Change the rules for inherited CHECK constraints to be essentially the same
as those for inherited columns; that is, it's no longer allowed for a child
table to not have a check constraint matching one that exists on a parent.
This satisfies the principle of least surprise (rows selected from the parent
will always appear to meet its check constraints) and eliminates some
longstanding bogosity in pg_dump, which formerly had to guess about whether
check constraints were really inherited or not.

The implementation involves adding conislocal and coninhcount columns to
pg_constraint (paralleling attislocal and attinhcount in pg_attribute)
and refactoring various ALTER TABLE actions to be more like those for
columns.

Alex Hunsaker, Nikhil Sontakke, Tom Lane

16 years agoAdjust power() error messages to be more descriptive.
Bruce Momjian [Fri, 9 May 2008 21:31:23 +0000 (21:31 +0000)]
Adjust power() error messages to be more descriptive.

16 years agoImprove logic for finding object files on OBJS lines in contrib Makefiles. If this...
Andrew Dunstan [Fri, 9 May 2008 16:01:05 +0000 (16:01 +0000)]
Improve logic for finding object files on OBJS lines in contrib Makefiles. If this unbreaks buildfarm mastodon, apply everywhere.

16 years agoGive a warning if -s switch is used with a non-custom pgbench test.
Tom Lane [Fri, 9 May 2008 15:53:07 +0000 (15:53 +0000)]
Give a warning if -s switch is used with a non-custom pgbench test.
Also, clean up the code that assigned the scale into :scale variables.
Greg Smith and Tom Lane

16 years agoAdd "%option noinput" to the scanners to avoid compiler warnings. GCC 4.3
Peter Eisentraut [Fri, 9 May 2008 15:36:31 +0000 (15:36 +0000)]
Add "%option noinput" to the scanners to avoid compiler warnings.  GCC 4.3
began to realize that the input() function isn't used and printed warnings.

16 years agoUpdate C comments to mention SQL:2003 handling of power return values.
Bruce Momjian [Fri, 9 May 2008 15:36:06 +0000 (15:36 +0000)]
Update C comments to mention SQL:2003 handling of power return values.

16 years agoFix Assert introduced in previous patch.
Heikki Linnakangas [Fri, 9 May 2008 15:27:17 +0000 (15:27 +0000)]
Fix Assert introduced in previous patch.

16 years agoFix incorrect archive truncation point calculation in the %r recovery_command
Heikki Linnakangas [Fri, 9 May 2008 14:27:47 +0000 (14:27 +0000)]
Fix incorrect archive truncation point calculation in the %r recovery_command
parameter. This fixes bug 4137 reported by Wojciech Strzalka, where a WAL
file is deleted too early when starting the recovery of a warm standby server.

Also add a sanity check in pg_standby so that it will refuse to delete anything
earlier than the file being restored, and improve the debug message in case
nothing is deleted.

Simon Riggs. Backpatch to 8.3, which is where %r was introduced.

16 years agoFix bogus expected output that should have made it quite clear that
Tom Lane [Fri, 9 May 2008 05:25:54 +0000 (05:25 +0000)]
Fix bogus expected output that should have made it quite clear that
something was wrong with that tab patch.

16 years agoFix memory stomp that's turning the whole buildfarm pink: you can't hack up
Tom Lane [Fri, 9 May 2008 05:25:04 +0000 (05:25 +0000)]
Fix memory stomp that's turning the whole buildfarm pink: you can't hack up
pg_wcsformat without changing pg_wcssize to match.  Add some comments to
try to make that clearer, and make a couple other minor editorializations.

16 years agoAdd to TODO:
Bruce Momjian [Fri, 9 May 2008 03:58:41 +0000 (03:58 +0000)]
Add to TODO:
>
> * Improve the /contrib installation experience
>
>   http://archives.postgresql.org/pgsql-hackers/2008-04/msg00132.php

16 years agoAdd regression test for various power expressions with a zero base, and
Bruce Momjian [Thu, 8 May 2008 22:17:54 +0000 (22:17 +0000)]
Add regression test for various power expressions with a zero base, and
adjust source code to be more modular.

16 years agoHave numeric 0 ^ 4.3 return 1, rather than an error, and have 0 ^ 0.0
Bruce Momjian [Thu, 8 May 2008 19:25:38 +0000 (19:25 +0000)]
Have numeric 0 ^ 4.3 return 1, rather than an error, and have 0 ^ 0.0
return 1, rather than error.

This was already the float8 behavior.

16 years agoHave psql output tab as the proper number of spaces, rather than \x09.
Bruce Momjian [Thu, 8 May 2008 19:11:36 +0000 (19:11 +0000)]
Have psql output tab as the proper number of spaces, rather than \x09.

16 years agoAdd psql '\pset format wrapped' mode to wrap output to screen width, or
Bruce Momjian [Thu, 8 May 2008 17:04:26 +0000 (17:04 +0000)]
Add psql '\pset format wrapped' mode to wrap output to screen width, or
file/pipe output too if \pset columns' is set.

Bryce Nesbitt

16 years agoFix contrib/xml2 makefile to not override CFLAGS, and in passing make it
Tom Lane [Thu, 8 May 2008 16:49:37 +0000 (16:49 +0000)]
Fix contrib/xml2 makefile to not override CFLAGS, and in passing make it
auto-configure properly for libxslt present or not.

16 years agoFix rules regression test for recent pg_stat_activity change.
Tom Lane [Thu, 8 May 2008 16:04:59 +0000 (16:04 +0000)]
Fix rules regression test for recent pg_stat_activity change.

16 years agoMake the new pg_stat_get_activity use OUT parameters, so you don't have to
Magnus Hagander [Thu, 8 May 2008 08:58:59 +0000 (08:58 +0000)]
Make the new pg_stat_get_activity use OUT parameters, so you don't have to
specify the column names and types. Also simplifies the view.

Per comments from Tom.

16 years agoUpdate TODO wording:
Bruce Momjian [Thu, 8 May 2008 02:24:26 +0000 (02:24 +0000)]
Update TODO wording:

< * Improve detection of shared memory segments being used by other
<   FreeBSD jails

> * Improve detection of shared memory segments being used by others
>   by checking the SysV shared memory field 'nattch'
>   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00673.php

16 years agoAdd to TODO:
Bruce Momjian [Thu, 8 May 2008 01:49:43 +0000 (01:49 +0000)]
Add to TODO:

>
>  o Add CREATE SCHEMA ... LIKE that copies a schema
>

16 years agoAdd to TODO:
Bruce Momjian [Thu, 8 May 2008 01:45:16 +0000 (01:45 +0000)]
Add to TODO:

> * Add database and transaction-level triggers
>
>   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00451.php

16 years agoRemove OID/foreign key mention in psql variable interpolation docs.
Bruce Momjian [Thu, 8 May 2008 00:27:57 +0000 (00:27 +0000)]
Remove OID/foreign key mention in psql variable interpolation docs.

16 years agoAdd Simon Riggs' email address.
Alvaro Herrera [Wed, 7 May 2008 18:48:40 +0000 (18:48 +0000)]
Add Simon Riggs' email address.

16 years agoMove Client Authentication right after Server Configuration in docs.
Bruce Momjian [Wed, 7 May 2008 16:36:43 +0000 (16:36 +0000)]
Move Client Authentication right after Server Configuration in docs.

Scott Marlowe

16 years agoMake the pg_stat_activity view call a SRF (pg_stat_get_activity())
Magnus Hagander [Wed, 7 May 2008 14:41:56 +0000 (14:41 +0000)]
Make the pg_stat_activity view call a SRF (pg_stat_get_activity())
instead of calling a bunch of individual functions.

This function can also be called directly, taking a PID as an argument, to
return only the data for a single PID.

16 years agoFix TODO typo.
Bruce Momjian [Wed, 7 May 2008 04:46:01 +0000 (04:46 +0000)]
Fix TODO typo.

16 years agoAdd URL for
Bruce Momjian [Wed, 7 May 2008 04:45:39 +0000 (04:45 +0000)]
Add URL for
< * Consider increasing the number of default statistics target, and
<   reduce statistics target overhead

16 years agoUpdate TODO wording:
Bruce Momjian [Wed, 7 May 2008 04:34:51 +0000 (04:34 +0000)]
Update TODO wording:

<  o Allow dictionary to filter out only stop words
>  o Allow dictionaries to change the token that is passed on to
>    later dictionaries

16 years agoAdd item, make text search section:
Bruce Momjian [Wed, 7 May 2008 04:12:25 +0000 (04:12 +0000)]
Add item, make text search section:

        o Consider changing error to warning for strings larger than one
          megabyte

          http://archives.postgresql.org/pgsql-bugs/2008-02/msg00190.php
          http://archives.postgresql.org/pgsql-patches/2008-03/msg00062.php

16 years agoHave boolean pset values checked against typical boolean values, rather
Bruce Momjian [Wed, 7 May 2008 02:33:52 +0000 (02:33 +0000)]
Have boolean pset values checked against typical boolean values, rather
than only 'off'.

16 years agoThe CONSTROID syscache should show conrelid as a relation OID column.
Tom Lane [Wed, 7 May 2008 01:46:04 +0000 (01:46 +0000)]
The CONSTROID syscache should show conrelid as a relation OID column.
Not clear that there's any observable bug at present from this omission,
but it seems like something to fix going forward.

16 years agoConvert the list of syscache names from a series of #define's into an enum,
Tom Lane [Wed, 7 May 2008 01:04:49 +0000 (01:04 +0000)]
Convert the list of syscache names from a series of #define's into an enum,
to avoid the pain of manually renumbering them anytime we insert another
name in alphabetical order.  An excellent idea from Alex Hunsaker and
NikhilS' inherited-constraints patch --- whether or not the rest of that
gets in, this should.  Dunno why we never thought of it before.

16 years agoPoint to our download URL, rather than listing interface in the README
Bruce Momjian [Tue, 6 May 2008 22:02:12 +0000 (22:02 +0000)]
Point to our download URL, rather than listing interface in the README
file:

http://www.postgresql.org/download

16 years agoUpdate libpqxx URL in README.
Bruce Momjian [Tue, 6 May 2008 21:57:46 +0000 (21:57 +0000)]
Update libpqxx URL in README.

16 years agoDone:
Bruce Momjian [Tue, 6 May 2008 16:14:29 +0000 (16:14 +0000)]
Done:

> * -Add function to report the time of the most recent server reload

16 years agoDone:
Bruce Momjian [Tue, 6 May 2008 00:47:53 +0000 (00:47 +0000)]
Done:

>  o -Improve display of enums to show valid enum values

16 years agoAdd more dependencies from libpgport required by
Magnus Hagander [Mon, 5 May 2008 19:31:40 +0000 (19:31 +0000)]
Add more dependencies from libpgport required by
standalone msvc build of libpq.

Hiroshi Saito

16 years agoDocument extra information provided by psql's \dT+ (not \dt+ as per recent commit).
Andrew Dunstan [Mon, 5 May 2008 01:38:08 +0000 (01:38 +0000)]
Document extra information provided by psql's \dT+ (not \dt+ as per recent commit).

16 years agoDisplay ACLS using multiple lines for psql's \z. Brendan Jurd.
Andrew Dunstan [Mon, 5 May 2008 01:21:03 +0000 (01:21 +0000)]
Display ACLS using multiple lines for psql's \z. Brendan Jurd.

16 years agoShow enum values in psql's \dt+. David Fetter.
Andrew Dunstan [Mon, 5 May 2008 00:11:31 +0000 (00:11 +0000)]
Show enum values in psql's \dt+. David Fetter.

16 years agoAdd timestamp and timestamptz versions of generate_series().
Tom Lane [Sun, 4 May 2008 23:19:24 +0000 (23:19 +0000)]
Add timestamp and timestamptz versions of generate_series().

Hitoshi Harada

16 years agoAdd pg_conf_load_time() function to report when the Postgres configuration
Tom Lane [Sun, 4 May 2008 21:13:36 +0000 (21:13 +0000)]
Add pg_conf_load_time() function to report when the Postgres configuration
files were last loaded.

George Gensure

16 years agoUse new cstring/text conversion functions in some additional places.
Tom Lane [Sun, 4 May 2008 16:42:41 +0000 (16:42 +0000)]
Use new cstring/text conversion functions in some additional places.
These changes assume that the varchar and xml data types are represented
the same as text.  (I did not, however, accept the portions of the proposed
patch that wanted to assume bytea is the same as text --- tgl.)

Brendan Jurd

16 years agoadd ; missing due to my carelessness
Andrew Dunstan [Sun, 4 May 2008 08:32:21 +0000 (08:32 +0000)]
add ; missing due to my carelessness

16 years agoPlace statement timeout more appropriately, per gripe from Tom.
Andrew Dunstan [Sun, 4 May 2008 03:46:08 +0000 (03:46 +0000)]
Place statement timeout more appropriately, per gripe from Tom.

16 years agoDisable statement timeouts while making or restoring dumps.
Andrew Dunstan [Sat, 3 May 2008 23:32:32 +0000 (23:32 +0000)]
Disable statement timeouts while making or restoring dumps.

Joshua Drake.

16 years agoThe 8.2 patch that added support for an alias on the target table of
Tom Lane [Sat, 3 May 2008 23:19:20 +0000 (23:19 +0000)]
The 8.2 patch that added support for an alias on the target table of
UPDATE/DELETE forgot to teach ruleutils.c to display the alias.
Per bug #4141 from Mathias Seiler.

16 years agoFix plpython to not get totally confused by OUT arguments. (It still doesn't
Tom Lane [Sat, 3 May 2008 02:47:48 +0000 (02:47 +0000)]
Fix plpython to not get totally confused by OUT arguments.  (It still doesn't
support multiple OUT arguments, though.)

Hannu Krosing

16 years agoProvide for MSVC config equivalents of recently added configure options. Remove
Andrew Dunstan [Sat, 3 May 2008 00:24:06 +0000 (00:24 +0000)]
Provide for MSVC config equivalents of recently added configure options. Remove
any hardcoding of those options. Along the way, reorder the expression used to
calculate RELSEG_SIZE to make it slightly clearer. For now wal_segsize is only
allowed to have a value of 1 on Windows - we can relax that when we get full
large file support in the backend.

16 years agoSupport RETURN QUERY EXECUTE in plpgsql.
Tom Lane [Sat, 3 May 2008 00:11:36 +0000 (00:11 +0000)]
Support RETURN QUERY EXECUTE in plpgsql.

Pavel Stehule

16 years agoUpdate documentation for psql relation-size-in-\dt+ patch.
Tom Lane [Fri, 2 May 2008 22:50:21 +0000 (22:50 +0000)]
Update documentation for psql relation-size-in-\dt+ patch.

16 years agoAllow the planner's estimate of the fraction of a cursor's rows that will be
Tom Lane [Fri, 2 May 2008 21:26:10 +0000 (21:26 +0000)]
Allow the planner's estimate of the fraction of a cursor's rows that will be
retrieved to be controlled through a GUC variable.

Robert Hell