- 08 Aug, 2006 10 commits
-
-
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
Hiroshi Saito
-
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. <
-
Teodor Sigaev authored
-
Michael Meskes authored
-
Michael Meskes authored
-
Michael Meskes authored
Lots of small changes in regression test suite
-
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
-
- 07 Aug, 2006 5 commits
-
-
Tom Lane authored
-
Tom Lane authored
archiver to behave per original coder's expectation on these machines. We already know this everywhere else AFAICT.
-
Teodor Sigaev authored
what was a reason to corrupt index. Thank to Mario Weilguni <mweilguni@sime.com> to discover a bug.
-
Tom Lane authored
operation every so often. This improves the usefulness of PITR log shipping for hot standby: formerly, if the standby server crashed, it was necessary to restart it from the last base backup and replay all the WAL since then. Now it will only need to reread about the same amount of WAL as the master server would. The behavior might also come in handy during a long PITR replay sequence. Simon Riggs, with some editorialization by Tom Lane.
-
Michael Meskes authored
Fixed and cleaned up some regression tests. Also added a new one.
-
- 06 Aug, 2006 3 commits
-
-
Tom Lane authored
without indexes) but not to display temp tables. It's a bit hard to credit that sanity_check could get through a database-wide VACUUM while the preceding create_index test is still trying to clean up its temp tables ... but I see no other explanation for the current failure report from buildfarm member sponge.
-
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.
-
Bruce Momjian authored
-
- 05 Aug, 2006 5 commits
-
-
Tom Lane authored
list, when some of the child rels have been excluded by constraint exclusion. This doesn't save a huge amount of time but it'll save some, and it makes the EXPLAIN output look saner. We already did the equivalent thing in set_append_rel_pathlist(), but not here.
-
Michael Meskes authored
-
Neil Conway authored
Patch from Michael Fuhr.
-
Tom Lane authored
contradictory WHERE-clauses applied to a relation. This makes the GUC variable constraint_exclusion rather inappropriately named, but I've refrained for the moment from renaming it. Per example from Martin Lesser.
-
Tom Lane authored
This doesn't matter too much for ordinary NOTs, since prepqual.c does its best to get rid of those, but it helps with IS NOT TRUE clauses which the rule rewriter likes to insert. Per example from Martin Lesser.
-
- 04 Aug, 2006 15 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
that's shorter-lived than the expression state being evaluated in it really doesn't work :-( --- we end up with fn_extra caches getting deleted while still in use. Rather than abandon the notion of caching expression state across domain_in calls altogether, I chose to make domain_in a bit cozier with ExprContext. All we really need for evaluating variable-free expressions is an ExprContext, not an EState, so I invented the notion of a "standalone" ExprContext. domain_in can prevent resource leakages by doing a ReScanExprContext on this rather than having to free it entirely; so we can make the ExprContext have the same lifespan (and particularly the same per_query memory context) as the expression state structs.
-
Bruce Momjian authored
Hiroshi Saito
-
Bruce Momjian authored
-
Bruce Momjian authored
these options were used before -n/-t.
-
Tom Lane authored
warnings on some compilers.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
not merely remove their contents. Else 'cvs update' complains.
-
Tom Lane authored
constant input. Seems worth doing because rule rewriter inserts IS NOT TRUE tests into WHERE clauses.
-
Michael Meskes authored
-
Bruce Momjian authored
-
Bruce Momjian authored
supresses compiler warning.
-
-
Tom Lane authored
Joachim Wieland
-
- 03 Aug, 2006 2 commits
-
-
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.
-
Tom Lane authored
check). This isn't supported by pg_regress since the recent rewrite into C. While we could add char classes to pg_regress.c's code, it's not really needed at the moment: thanks to Andrew's patch to make pg_regress always accept the 'standard' comparison file, we can just drop the version check.
-