- 27 Aug, 2006 3 commits
-
-
Tom Lane authored
Needed because lock.c is now going to use the same type of list.
-
Michael Meskes authored
- Fixed a memory leak/segfault in unsuccessful connection. - Some changes to test files.
-
Tom Lane authored
Per discussion with Martin Atukunda.
-
- 26 Aug, 2006 1 commit
-
-
Michael Meskes authored
-
- 25 Aug, 2006 6 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
< > * Implement SQL:2003 window functions
-
Bruce Momjian authored
-
Teodor Sigaev authored
order is changed.
-
Tom Lane authored
blocking concurrent writes to the table. Greg Stark, with a little help from Tom Lane.
-
- 24 Aug, 2006 9 commits
-
-
Teodor Sigaev authored
Fix compare bug for tsvector: problem was in aligment. Per Stefan Kaltenbrunner <stefan@kaltenbrunner.cc> and Phil Frost <indigo@bitglue.com>
-
Bruce Momjian authored
> * Allow inlining of set-returning functions
-
Michael Meskes authored
-
Michael Meskes authored
-
Michael Meskes authored
-
Michael Meskes authored
-
Tom Lane authored
specific Windows error code (GetLastError). This is a hopefully temporary hack to try to diagnose rare failures. Magnus Hagander
-
Bruce Momjian authored
John Gray
-
Tom Lane authored
on the same index page; we can avoid data copying as well as buffer refcount manipulations in this common case. Makes for a small but noticeable improvement in mergejoin speed. Heikki Linnakangas
-
- 23 Aug, 2006 6 commits
-
-
Bruce Momjian authored
< * All backends running as threads in a single process (not want) > * All backends running as threads in a single process (not wanted) < * Optimizer hints (not want) > * Optimizer hints (not wanted) > > * Allow AS in "SELECT col AS label" to be optional (not wanted) > > Because we support postfix operators, it isn't possible to make AS > optional and continue to use bison. > http://archives.postgresql.org/pgsql-sql/2006-08/msg00164.php
-
Michael Meskes authored
-
Michael Meskes authored
-
Michael Meskes authored
-
Michael Meskes authored
Use initializer string length as size for character strings. Added ecpg_config.h file that is created via configure.
-
Bruce Momjian authored
< o Allow COPY to output from SELECT > o Allow COPY (SELECT ...) TO 'filename' < COPY should also be able to output views. > COPY should also be able to output views using COPY (SELECT > * FROM view) TO 'filename' internally.
-
- 22 Aug, 2006 7 commits
-
-
Michael Meskes authored
Fixed some regression test problems.
-
Bruce Momjian authored
"failure".
-
Bruce Momjian authored
> > These would be for application use, not for use by pg_dump. >
-
Bruce Momjian authored
suggesting review of client_encoding.
-
Tom Lane authored
-
Bruce Momjian authored
interchanged.
-
Bruce Momjian authored
-
- 21 Aug, 2006 8 commits
-
-
Tom Lane authored
entirely on older Windows platforms without the needed library function. Magnus Hagander
-
Tom Lane authored
the subject tuple is already deleted: we need not open the pk_rel until after we check that.
-
Tom Lane authored
-
Tom Lane authored
of the transaction ID counter. Nothing is done with the epoch except to store it in checkpoint records, but this provides a foundation with which add-on code can pretend that XIDs never wrap around. This is a severely trimmed and rewritten version of the xxid patch submitted by Marko Kreen. Per discussion, the epoch counter seems the only part of xxid that really needs to be in the core server.
-
Bruce Momjian authored
< o Add a function to support Parse/DescribeStatement capability > o -Add a function to support Parse/DescribeStatement capability
-
Bruce Momjian authored
< * %Disallow changing DEFAULT expression of a SERIAL column? < < This should be done only if the existing SERIAL problems cannot be < fixed. < < * %Disallow ALTER SEQUENCE changes for SERIAL sequences because pg_dump < does not dump the changes
-
Michael Meskes authored
-
Tom Lane authored
by abandoning the idea that it should say SERIAL in the dump. Instead, dump serial sequences and column defaults just like regular ones. Add a new backend command ALTER SEQUENCE OWNED BY to let pg_dump recreate the sequence-to-column dependency that was formerly created "behind the scenes" by SERIAL. This restores SERIAL to being truly "just a macro" consisting of component operations that can be stated explicitly in SQL. Furthermore, the new command allows sequence ownership to be reassigned, so that old mistakes can be cleaned up. Also, downgrade the OWNED-BY dependency from INTERNAL to AUTO, since there is no longer any very compelling argument why the sequence couldn't be dropped while keeping the column. (This forces initdb, to be sure the right kinds of dependencies are in there.) Along the way, add checks to prevent ALTER OWNER or SET SCHEMA on an owned sequence; you can now only do this indirectly by changing the owning table's owner or schema. This is an oversight in previous releases, but probably not worth back-patching.
-