- 23 Aug, 2006 3 commits
-
-
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.
-
- 20 Aug, 2006 2 commits
-
-
Alvaro Herrera authored
each object to be deleted, instead of the previous hack that just skipped INTERNAL dependencies, which didn't really work. Per report from Tom Lane. To do this, introduce a new performMultipleDeletions entry point in dependency.c to delete multiple objects at once. The dependency code then has the responsability of tracking INTERNAL and AUTO dependencies as needed. Along the way, change ObjectAddresses so that we can allocate an ObjectAddress list from outside dependency.c and not have to export the internal representation.
-
Michael Meskes authored
-
- 19 Aug, 2006 4 commits
-
-
Michael Meskes authored
-
Michael Meskes authored
-
Tom Lane authored
functions in its targetlist, to avoid introducing multiple evaluations of volatile functions that textually appear only once. This is a slightly tighter version of Jaime Casanova's recent patch.
-
Tom Lane authored
that ps_status provides by appending 'waiting' to the PS display. This completes the project of making it feasible to turn off process title updates and instead rely on pg_stat_activity. Per my suggestion a few weeks ago.
-
- 18 Aug, 2006 9 commits
-
-
Andrew Dunstan authored
-
Tom Lane authored
to allow obtaining information about previously prepared statements and open cursors. Volkan Yazici
-
Michael Meskes authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
the rel, it's easy to get rid of the narrow race-condition window that used to exist in VACUUM and CLUSTER. Did some minor code-beautification work in the same area, too.
-
Michael Meskes authored
Synced parser and keyword list. Fixed parsing of CONNECT statement so it accepts a C string again.
-
Bruce Momjian authored
-
Bruce Momjian authored
Magnus.
-
- 17 Aug, 2006 6 commits
-
-
Tom Lane authored
than N seconds apart. This allows a simple, if not very high performance, means of guaranteeing that a PITR archive is no more than N seconds behind real time. Also make pg_current_xlog_location return the WAL Write pointer, add pg_current_xlog_insert_location to return the Insert pointer, and fix pg_xlogfile_name_offset to return its results as a two-element record instead of a smashed-together string, as per recent discussion. Simon Riggs
-
Peter Eisentraut authored
found. Besides stopping those early who have no dtrace installed whatsoever, this will also alert those who have dtrace in /usr/sbin, which might not be in the path, which would produce confusing failures much later in the build process. Add documentation about pointing configure to find dtrace.
-
Tom Lane authored
mergejoin possibility where the inner rel was less well sorted than the outer (ie, it matches some but not all of the merge clauses that can work with the outer), if the inner path in question is also the overall cheapest path for its rel. This is an old bug, but I'm not sure it's worth back-patching, because it's such a corner case. Noted while investigating a test case from Peter Hardman.
-
Tom Lane authored
subquery's pathkey is a RelabelType applied to something that appears in the subquery's output; for example where the subquery returns a varchar Var and the sort order is shown as that Var coerced to text. This comes up because varchar doesn't have its own sort operator. Per example from Peter Hardman.
-
Bruce Momjian authored
< * Add support for arrays of domains > o Add support for arrays of domains > o Add support for arrays of complex types
-
Bruce Momjian authored
> * Support a data type with specific enumerated values (ENUM) > > http://archives.postgresql.org/pgsql-hackers/2006-08/msg00979.php
-
- 16 Aug, 2006 1 commit
-
-
Bruce Momjian authored
> * Add support for arrays of domains
-