OSDN Git Service

pg-rex/syncrep.git
17 years agoDone:
Bruce Momjian [Tue, 9 Jan 2007 03:43:32 +0000 (03:43 +0000)]
Done:

< * Allow the creation of indexes with mixed ascending/descending
> * -Allow the creation of indexes with mixed ascending/descending
<
<   This is possible now by creating an operator class with reversed sort
<   operators.  One complexity is that NULLs would then appear at the start
<   of the result set, and this might affect certain sort types, like
<   merge join.
<

17 years agopltcl regression test needs to actually create an opclass, not just one operator.
Tom Lane [Tue, 9 Jan 2007 03:13:38 +0000 (03:13 +0000)]
pltcl regression test needs to actually create an opclass, not just one operator.

17 years agoSupport ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LAST
Tom Lane [Tue, 9 Jan 2007 02:14:16 +0000 (02:14 +0000)]
Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LAST
per-column options for btree indexes.  The planner's support for this is still
pretty rudimentary; it does not yet know how to plan mergejoins with
nondefault ordering options.  The documentation is pretty rudimentary, too.
I'll work on improving that stuff later.

Note incompatible change from prior behavior: ORDER BY ... USING will now be
rejected if the operator is not a less-than or greater-than member of some
btree opclass.  This prevents less-than-sane behavior if an operator that
doesn't actually define a proper sort ordering is selected.

17 years agoPrevent duplicate attribute names in XMLELEMENT.
Peter Eisentraut [Mon, 8 Jan 2007 23:41:57 +0000 (23:41 +0000)]
Prevent duplicate attribute names in XMLELEMENT.

17 years agoTweak joinlist creation to avoid generating useless one-element subproblems
Tom Lane [Mon, 8 Jan 2007 16:47:30 +0000 (16:47 +0000)]
Tweak joinlist creation to avoid generating useless one-element subproblems
when collapsing of JOIN trees is stopped by join_collapse_limit.  For instance
a list of 11 LEFT JOINs with limit 8 now produces something like
((1 2 3 4 5 6 7 8) 9 10 11 12)
instead of
(((1 2 3 4 5 6 7 8) (9)) 10 11 12)
The latter structure is really only required for a FULL JOIN.
Noted while studying an example from Shane Ambler.

17 years agoRemove cost_hashjoin's very ancient hack to discourage (once, entirely forbid)
Tom Lane [Mon, 8 Jan 2007 16:09:22 +0000 (16:09 +0000)]
Remove cost_hashjoin's very ancient hack to discourage (once, entirely forbid)
hash joins with the estimated-larger relation on the inside.  There are
several cases where doing that makes perfect sense, and in cases where it
doesn't, the regular cost computation really ought to be able to figure that
out.  Make some marginal tweaks in said computation to try to get results
approximating reality a bit better.  Per an example from Shane Ambler.

Also, fix an oversight in the original patch to add seq_page_cost: the costs
of spilling a hash join to disk should be scaled by seq_page_cost.

17 years agoSome fine-tuning of xmlpi in corner cases:
Peter Eisentraut [Sun, 7 Jan 2007 22:49:56 +0000 (22:49 +0000)]
Some fine-tuning of xmlpi in corner cases:
- correct error codes
- do syntax checks in correct order
- strip leading spaces of argument

17 years agoCheck and document minimum required version of libxml.
Peter Eisentraut [Sun, 7 Jan 2007 21:10:41 +0000 (21:10 +0000)]
Check and document minimum required version of libxml.

17 years agoIndent comments in makefiles better so they don't appear in the output.
Peter Eisentraut [Sun, 7 Jan 2007 08:49:31 +0000 (08:49 +0000)]
Indent comments in makefiles better so they don't appear in the output.

17 years agoAllow XML fragment to contain a XML declaration. For that, we need a small
Peter Eisentraut [Sun, 7 Jan 2007 00:13:55 +0000 (00:13 +0000)]
Allow XML fragment to contain a XML declaration.  For that, we need a small
hand-crafted parser for the XML declaration, because libxml doesn't seem
to allow this.

17 years agoRemove:
Bruce Momjian [Sat, 6 Jan 2007 22:55:09 +0000 (22:55 +0000)]
Remove:

< * %Allow the identifier length to be increased via a configure option

17 years agoUpdates for MONEY data type:
Bruce Momjian [Sat, 6 Jan 2007 22:24:16 +0000 (22:24 +0000)]
Updates for MONEY data type:

< * Improve the MONEY data type
> * -Make 64-bit version of the MONEY data type
> * Add locale-aware MONEY type, and support multiple currencies
<   Change the MONEY data type to use DECIMAL internally, with special
<   locale-aware output formatting.
<   http://archives.postgresql.org/pgsql-hackers/2006-09/msg01107.php

17 years agoDone:
Bruce Momjian [Sat, 6 Jan 2007 22:19:46 +0000 (22:19 +0000)]
Done:

> * -Allow user-defined types to accept 'typmod' parameters

17 years agoAdd:
Bruce Momjian [Sat, 6 Jan 2007 22:18:24 +0000 (22:18 +0000)]
Add:

>
> * Make consistent use of long/short command options --- pg_ctl needs
>   long ones, pg_config doesn't have short ones, postgres doesn't have
>   enough long ones, etc.

17 years agoAdd:
Bruce Momjian [Sat, 6 Jan 2007 21:58:22 +0000 (21:58 +0000)]
Add:

>  o Consider parsing the -c string into individual queries so each
>    is run in its own transaction
>
>  o Consider disallowing multiple queries in PQexec() as an
>    additional barrier to SQL injection attacks

17 years agoApply fix so pow() and exp() ERANGE is used only if result is not 0.
Bruce Momjian [Sat, 6 Jan 2007 20:21:29 +0000 (20:21 +0000)]
Apply fix so pow() and exp() ERANGE is used only if result is not 0.

17 years agoAlready done in 8.2:
Bruce Momjian [Sat, 6 Jan 2007 20:00:53 +0000 (20:00 +0000)]
Already done in 8.2:

< * Allow CREATE INDEX to take an additional parameter for use with
<   special index types

17 years agoMove INDEX inheritance out into a separate section:
Bruce Momjian [Sat, 6 Jan 2007 20:00:10 +0000 (20:00 +0000)]
Move INDEX inheritance out into a separate section:

< * Allow inherited tables to inherit index, UNIQUE constraint, and primary
<   key, foreign key
< * UNIQUE INDEX on base column not honored on INSERTs/UPDATEs from
<   inherited table:  INSERT INTO inherit_table (unique_index_col) VALUES
<   (dup) should fail
<
<   The main difficulty with this item is the problem of creating an index
<   that can span more than one table.
<
< * Allow SELECT ... FOR UPDATE on inherited tables
> * Inheritance
>
>  o Allow inherited tables to inherit indexes, UNIQUE constraints,
>    and primary/foreign keys
>  o Honor UNIQUE INDEX on base column in INSERTs/UPDATEs
>    on inherited table, e.g.  INSERT INTO inherit_table
>    (unique_index_col) VALUES (dup) should fail
>
>    The main difficulty with this item is the problem of
>    creating an index that can span multiple tables.
>
>  o Allow SELECT ... FOR UPDATE on inherited tables
>
>
>

17 years agoDone:
Bruce Momjian [Sat, 6 Jan 2007 19:41:23 +0000 (19:41 +0000)]
Done:

> * -Allow the pg_xlog directory location to be specified during initdb

17 years agoAllow initdb to specify the pg_xlog directory.
Bruce Momjian [Sat, 6 Jan 2007 19:40:00 +0000 (19:40 +0000)]
Allow initdb to specify the pg_xlog directory.

Euler Taveira de Oliveira

17 years agoReplace xmlroot with a properly functioning version that parses the value,
Peter Eisentraut [Sat, 6 Jan 2007 19:18:36 +0000 (19:18 +0000)]
Replace xmlroot with a properly functioning version that parses the value,
sets the items, and serializes the value back (rather than adding an
arbitrary number of XML preambles as before).

The libxml memory management via palloc had to be disabled because it
crashes when libxml tries to access memory that was helpfully freed
earlier by PostgreSQL.  This needs further thought.

17 years agoFix filtered_base_yylex() to save and restore base_yylval and base_yylloc
Tom Lane [Sat, 6 Jan 2007 19:14:17 +0000 (19:14 +0000)]
Fix filtered_base_yylex() to save and restore base_yylval and base_yylloc
properly when doing a lookahead.  The lack of this was causing various
interesting misbehaviors when one tries to use "with" as a plain identifier.

17 years agoDocument problems with release links in early branches.
Bruce Momjian [Sat, 6 Jan 2007 15:19:45 +0000 (15:19 +0000)]
Document problems with release links in early branches.

17 years agoCheck for ERANGE in exp() as well.
Bruce Momjian [Sat, 6 Jan 2007 15:18:03 +0000 (15:18 +0000)]
Check for ERANGE in exp() as well.

Improve release docs for ecpg regression tests.

17 years agoImprove dpow() check for ERANGE overflow for HPPA.
Bruce Momjian [Sat, 6 Jan 2007 04:14:55 +0000 (04:14 +0000)]
Improve dpow() check for ERANGE overflow for HPPA.

17 years agoPut back ERANGE test in dpow(). There are platforms that need this,
Tom Lane [Sat, 6 Jan 2007 02:28:38 +0000 (02:28 +0000)]
Put back ERANGE test in dpow().  There are platforms that need this,
like my HPPA ...

17 years agoDocument that we need to update the ecpg regression files when we update
Bruce Momjian [Sat, 6 Jan 2007 00:25:11 +0000 (00:25 +0000)]
Document that we need to update the ecpg regression files when we update
the library version number.

17 years agoUpdate ecpg regresison output for new library version number.
Bruce Momjian [Fri, 5 Jan 2007 22:43:17 +0000 (22:43 +0000)]
Update ecpg regresison output for new library version number.

17 years agoMinor copy-editing for release note updates.
Tom Lane [Fri, 5 Jan 2007 22:34:35 +0000 (22:34 +0000)]
Minor copy-editing for release note updates.

17 years agoUpdate CVS HEAD for 2007 copyright. Back branches are typically not
Bruce Momjian [Fri, 5 Jan 2007 22:20:05 +0000 (22:20 +0000)]
Update CVS HEAD for 2007 copyright.  Back branches are typically not
back-stamped for this.

17 years agoUpdate copyright script, report year used
Bruce Momjian [Fri, 5 Jan 2007 21:29:20 +0000 (21:29 +0000)]
Update copyright script, report year used

17 years agoModify copyright script to pull current year from `date`.
Bruce Momjian [Fri, 5 Jan 2007 21:09:53 +0000 (21:09 +0000)]
Modify copyright script to pull current year from `date`.

17 years agoUpdate Japanese FAQ.
Bruce Momjian [Fri, 5 Jan 2007 20:56:56 +0000 (20:56 +0000)]
Update Japanese FAQ.

17 years agoStamp major release 8.3.0, and increment library version numbers.
Bruce Momjian [Fri, 5 Jan 2007 20:54:43 +0000 (20:54 +0000)]
Stamp major release 8.3.0, and increment library version numbers.

17 years agoUpdate for release 8.2.1.
Bruce Momjian [Fri, 5 Jan 2007 20:40:30 +0000 (20:40 +0000)]
Update for release 8.2.1.

17 years agoCreate release notes for all back-branch relases on 2007-01-08.
Bruce Momjian [Fri, 5 Jan 2007 20:05:02 +0000 (20:05 +0000)]
Create release notes for all back-branch relases on 2007-01-08.

17 years agoCall setrlimit if possible in pg_regress to allow core file generation, and provide...
Andrew Dunstan [Fri, 5 Jan 2007 16:17:55 +0000 (16:17 +0000)]
Call setrlimit if possible in pg_regress to allow core file generation, and provide a switch for similar behaviour in pg_ctl.

17 years agoUpdate float dpow() comment about whick platforms had issues with Nan.
Bruce Momjian [Fri, 5 Jan 2007 03:19:26 +0000 (03:19 +0000)]
Update float dpow() comment about whick platforms had issues with Nan.

Stefan Kaltenbrunner

17 years agoAdd missing reference to pg_shdescription. Greg Mullane
Tom Lane [Fri, 5 Jan 2007 01:18:59 +0000 (01:18 +0000)]
Add missing reference to pg_shdescription.  Greg Mullane

17 years agoFix tab to space mention in FAQ_DEV.
Bruce Momjian [Thu, 4 Jan 2007 21:00:14 +0000 (21:00 +0000)]
Fix tab to space mention in FAQ_DEV.

17 years agoFix AddDefine to handle quotes properly. Magnus
Tom Lane [Thu, 4 Jan 2007 17:58:19 +0000 (17:58 +0000)]
Fix AddDefine to handle quotes properly.  Magnus

17 years agoTweak pg_dumpall to add GRANT CONNECT ON DATABASE ... TO PUBLIC when dumping
Tom Lane [Thu, 4 Jan 2007 17:49:37 +0000 (17:49 +0000)]
Tweak pg_dumpall to add GRANT CONNECT ON DATABASE ... TO PUBLIC when dumping
database privileges from a pre-8.2 server.  This ensures that the reloaded
database will maintain the same behavior it had in the previous installation,
ie, everybody has connect privilege.  Per gripe from L Bayuk.

17 years agoFix some small typos in comments. Greg Stark
Tom Lane [Thu, 4 Jan 2007 16:29:42 +0000 (16:29 +0000)]
Fix some small typos in comments.  Greg Stark

17 years agoSimplify assignment of Inf for pow Nan (don't worry about the sign).
Bruce Momjian [Thu, 4 Jan 2007 05:18:39 +0000 (05:18 +0000)]
Simplify assignment of Inf for pow Nan (don't worry about the sign).

17 years agoFix erroneous implementation of -s in postmaster.c (the switch doesn't take
Tom Lane [Thu, 4 Jan 2007 00:57:51 +0000 (00:57 +0000)]
Fix erroneous implementation of -s in postc (the switch doesn't take
an optarg).  Add some comments noting that code in three different files has
to be kept in sync.  Fix erroneous description of -S switch (it sets work_mem
not silent_mode), and do some light copy-editing elsewhere in postgres-ref.

17 years agoFix regex_fixed_prefix() to cope reasonably well with regex patterns of the
Tom Lane [Wed, 3 Jan 2007 22:39:26 +0000 (22:39 +0000)]
Fix regex_fixed_prefix() to cope reasonably well with regex patterns of the
form '^(foo)$'.  Before, these could never be optimized into indexscans.
The recent changes to make psql and pg_dump generate such patterns (for \d
commands and -t and related switches, respectively) therefore represented
a big performance hit for people with large pg_class catalogs, as seen in
recent gripe from Erik Jones.  While at it, be more paranoid about
case-sensitivity checking in multibyte encodings, and fix some other
corner cases in which a regex might be interpreted too liberally.

17 years agoUpdate pow() tests to check for both errno==EDOM _and_ result==Nan, and
Bruce Momjian [Wed, 3 Jan 2007 22:05:00 +0000 (22:05 +0000)]
Update pow() tests to check for both errno==EDOM _and_ result==Nan, and
document why this happens.  Remove exp() errno check because not needed.

17 years agoFix erroneous error tests in pow/exp.
Tom Lane [Wed, 3 Jan 2007 19:34:23 +0000 (19:34 +0000)]
Fix erroneous error tests in pow/exp.

17 years agoFix btree_gist for new larger money type.
Tom Lane [Wed, 3 Jan 2007 18:57:19 +0000 (18:57 +0000)]
Fix btree_gist for new larger money type.

17 years agoClean up smgr.c/md.c APIs as per discussion a couple months ago. Instead of
Tom Lane [Wed, 3 Jan 2007 18:11:01 +0000 (18:11 +0000)]
Clean up smgr.c/md.c APIs as per discussion a couple months ago.  Instead of
having md.c return a success/failure boolean to smgr.c, which was just going
to elog anyway, let md.c issue the elog messages itself.  This allows better
error reporting, particularly in cases such as "short read" or "short write"
which Peter was complaining of.  Also, remove the kluge of allowing mdread()
to return zeroes from a read-beyond-EOF: this is now an error condition
except when InRecovery or zero_damaged_pages = true.  (Hash indexes used to
require that behavior, but no more.)  Also, enforce that mdwrite() is to be
used for rewriting existing blocks while mdextend() is to be used for
extending the relation EOF.  This restriction lets us get rid of the old
ad-hoc defense against creating huge files by an accidental reference to
a bogus block number: we'll only create new segments in mdextend() not
mdwrite() or mdread().  (Again, when InRecovery we allow it anyway, since
we need to allow updates of blocks that were later truncated away.)
Also, clean up the original makeshift patch for bug #2737: move the
responsibility for padding relation segments to full length into md.c.

17 years agoAttempt to return proper overflow/underflow messages for platforms that
Bruce Momjian [Wed, 3 Jan 2007 14:35:24 +0000 (14:35 +0000)]
Attempt to return proper overflow/underflow messages for platforms that
only return Nan and set errno for pow/exp overflow/underflow.

17 years agoFor float4/8, remove errno checks for pow() and exp() because only some
Bruce Momjian [Wed, 3 Jan 2007 04:21:47 +0000 (04:21 +0000)]
For float4/8, remove errno checks for pow() and exp() because only some
platforms set errno, and we already have a check macro that detects
under/overflow, so there is no reason for platform-specific code
anymore.

17 years agoWiden the money type to 64 bits.
D'Arcy J.M. Cain [Wed, 3 Jan 2007 01:19:51 +0000 (01:19 +0000)]
Widen the money type to 64 bits.

17 years agoUpdate expected result for new inet error message wording.
Bruce Momjian [Tue, 2 Jan 2007 23:38:42 +0000 (23:38 +0000)]
Update expected result for new inet error message wording.

17 years agoAdjust network errmsg("result is out of range") message to be consistent
Bruce Momjian [Tue, 2 Jan 2007 22:21:08 +0000 (22:21 +0000)]
Adjust network errmsg("result is out of range") message to be consistent
with other places.

17 years agoSome platforms set errno on pow(), exp() overflow, some do not, so if
Bruce Momjian [Tue, 2 Jan 2007 22:19:42 +0000 (22:19 +0000)]
Some platforms set errno on pow(), exp() overflow, some do not, so if
isinf(), fall through to our own infinity checks.

17 years agoAdd a regression test for ALTER SET TABLESPACE; this is a whole separate
Tom Lane [Tue, 2 Jan 2007 21:43:36 +0000 (21:43 +0000)]
Add a regression test for ALTER SET TABLESPACE; this is a whole separate
code path in tablecmds.c that wasn't exercised at all before.

17 years agofinite() no longer used; remove finite() platform-specific
Bruce Momjian [Tue, 2 Jan 2007 21:25:50 +0000 (21:25 +0000)]
finite() no longer used; remove finite() platform-specific
infrastructure.

17 years agoAdd n_live_tuples and n_dead_tuples to pg_stat_all_tables.
Bruce Momjian [Tue, 2 Jan 2007 20:59:32 +0000 (20:59 +0000)]
Add n_live_tuples and n_dead_tuples to pg_stat_all_tables.

The purpose is to allow autovacuum-esq conditional vacuuming and
clustering using SQL to discover the required stats.

No documentation updates required.  Catalog version updated.

Glen Parker

17 years agoAdd #include <float.h> for platforms that still need it.
Bruce Momjian [Tue, 2 Jan 2007 20:50:35 +0000 (20:50 +0000)]
Add #include <float.h> for platforms that still need it.

17 years agoFix float4/8 to handle Infinity and Nan consistently, e.g. Infinity is a
Bruce Momjian [Tue, 2 Jan 2007 20:00:50 +0000 (20:00 +0000)]
Fix float4/8 to handle Infinity and Nan consistently, e.g. Infinity is a
valid result from a computation if one of the input values was infinity.
The previous code assumed an operation that returned infinity was an
overflow.

Handle underflow/overflow consistently, and add checks for aggregate
overflow.

Consistently prevent Inf/Nan from being cast to integer data types.

Fix INT_MIN % -1 to prevent overflow.

Update regression results for new error text.

Per report from Roman Kononov.

17 years agoFound the problem with my operator-family changes: by fetching from
Tom Lane [Sun, 31 Dec 2006 20:32:04 +0000 (20:32 +0000)]
Found the problem with my operator-family changes: by fetching from
pg_opclass during LookupOpclassInfo(), I'd turned pg_opclass_oid_index
into a critical system index.  However the problem could only manifest
during a backend's first attempt to load opclass data, and then only
if it had successfully loaded pg_internal.init and subsequently received
a relcache flush; which made it impossible to reproduce in sequential
tests and darn hard even in parallel tests.  Memo to self: when
exercising cache flush scenarios, must disable LookupOpclassInfo's
internal cache too.

17 years agoSupport type modifiers for user-defined types, and pull most knowledge
Tom Lane [Sat, 30 Dec 2006 21:21:56 +0000 (21:21 +0000)]
Support type modifiers for user-defined types, and pull most knowledge
about typmod representation for standard types out into type-specific
typmod I/O functions.  Teodor Sigaev, with some editorialization by
Tom Lane.

17 years agoClarify wording on when ctid is modified by VACUUM FULL.
Bruce Momjian [Sat, 30 Dec 2006 20:31:11 +0000 (20:31 +0000)]
Clarify wording on when ctid is modified by VACUUM FULL.

17 years agoAdd support for XML build option to MSVC build scripts.
Tom Lane [Fri, 29 Dec 2006 16:49:02 +0000 (16:49 +0000)]
Add support for XML build option to MSVC build scripts.
Magnus Hagander

17 years agoFix multiple breakages in last XML patch.
Tom Lane [Fri, 29 Dec 2006 16:44:28 +0000 (16:44 +0000)]
Fix multiple breakages in last XML patch.

17 years agoDe-escape XML names when reverse-compiling XML expressions.
Peter Eisentraut [Fri, 29 Dec 2006 10:50:22 +0000 (10:50 +0000)]
De-escape XML names when reverse-compiling XML expressions.

17 years agoFix up btree's initial scankey processing to be able to detect redundant
Tom Lane [Thu, 28 Dec 2006 23:16:39 +0000 (23:16 +0000)]
Fix up btree's initial scankey processing to be able to detect redundant
or contradictory keys even in cross-data-type scenarios.  This is another
benefit of the opfamily rewrite: we can find the needed comparison
operators now.

17 years agoAdd TLS thread URL:
Bruce Momjian [Thu, 28 Dec 2006 20:51:13 +0000 (20:51 +0000)]
Add TLS thread URL:

>   http://archives.postgresql.org/pgsql-hackers/2006-12/msg01213.php

17 years agoRemove:
Bruce Momjian [Thu, 28 Dec 2006 20:44:00 +0000 (20:44 +0000)]
Remove:

< * Add a GUC to control whether BEGIN inside a transcation should abort
<   the transaction.

17 years agoRemove caveat about avoiding cross-type operators in constraints intended
Tom Lane [Thu, 28 Dec 2006 20:02:38 +0000 (20:02 +0000)]
Remove caveat about avoiding cross-type operators in constraints intended
for use with constraint exclusion.  We can prove those cases now...

17 years agoEnable btree_predicate_proof() to make proofs involving cross-data-type
Tom Lane [Thu, 28 Dec 2006 19:53:05 +0000 (19:53 +0000)]
Enable btree_predicate_proof() to make proofs involving cross-data-type
predicate operators.  The hard stuff turns out to be already done in the
previous commit, we need merely open the floodgates...

17 years agoDone:
Bruce Momjian [Thu, 28 Dec 2006 18:01:20 +0000 (18:01 +0000)]
Done:

< * Move some /contrib modules out to their own project sites
<
<   Particularly, move GPL-licensed /contrib/userlock and
<   /contrib/dbmirror/clean_pending.pl.
<

17 years agoAdd send and recv functions for xml type.
Peter Eisentraut [Thu, 28 Dec 2006 14:28:36 +0000 (14:28 +0000)]
Add send and recv functions for xml type.

17 years agoHandle content and document options in xmlparse() correctly.
Peter Eisentraut [Thu, 28 Dec 2006 03:17:38 +0000 (03:17 +0000)]
Handle content and document options in xmlparse() correctly.

17 years agoAdd a defense to prevent core dumps if 8.2 version of rank_cd() is used with
Tom Lane [Thu, 28 Dec 2006 01:09:01 +0000 (01:09 +0000)]
Add a defense to prevent core dumps if 8.2 version of rank_cd() is used with
the 8.1 SQL function definition for it.  Per report from Rajesh Kumar Mallah,
such a DBA error doesn't seem at all improbable, and the cost of checking for
it is not very high compared to the cost of running this function.  (It would
have been better to change the C name of the function so it wouldn't be called
by the old SQL definition, but it's too late for that now in the 8.2 branch.)

17 years agofflush the \o file, if any, after each backslash command. We already
Tom Lane [Thu, 28 Dec 2006 00:29:13 +0000 (00:29 +0000)]
fflush the \o file, if any, after each backslash command.  We already
do this for ordinary SQL commands, so it seems consistent to do it for
backslash commands too.  Per gripe from Rajesh Kumar Mallah.

17 years agoRevert exports.list change pending closer study.
Tom Lane [Thu, 28 Dec 2006 00:01:05 +0000 (00:01 +0000)]
Revert exports.list change pending closer study.

17 years agoUse a more backward-compatible syntax for exports.list on Linux.
Tom Lane [Wed, 27 Dec 2006 23:53:13 +0000 (23:53 +0000)]
Use a more backward-compatible syntax for exports.list on Linux.
Per Thorkil Olesen.

17 years agoClean up pgindent handling of comments after 'else' by only moving
Bruce Momjian [Wed, 27 Dec 2006 23:03:52 +0000 (23:03 +0000)]
Clean up pgindent handling of comments after 'else' by only moving
multi-line comments to the next line.

17 years agoModify local buffer management to request memory for local buffers in blocks
Tom Lane [Wed, 27 Dec 2006 22:31:54 +0000 (22:31 +0000)]
Modify local buffer management to request memory for local buffers in blocks
of increasing size, instead of one at a time.  This reduces the memory
management overhead when num_temp_buffers is large: in the previous coding
we would actually waste 50% of the space used for temp buffers, because aset.c
would round the individual requests up to 16K.  Problem noted while studying
a performance issue reported by Steven Flatt.

Back-patch as far as 8.1 --- older versions used few enough local buffers
that the issue isn't significant for them.

17 years agoImprove memory management code to avoid inefficient behavior when a context
Tom Lane [Wed, 27 Dec 2006 22:30:48 +0000 (22:30 +0000)]
Improve memory management code to avoid inefficient behavior when a context
has a small maxBlockSize: the maximum request size that we will treat as a
"chunk" needs to be limited to fit in maxBlockSize.  Otherwise we will round
up the request size to the next power of 2, wasting space, which is a bit
pointless if we aren't going to make the blocks big enough to fit additional
stuff in them.  The example motivating this is local buffer management, which
makes repeated allocations of 8K (one BLCKSZ buffer) in TopMemoryContext,
which has maxBlockSize = 8K because for the most part allocations there are
small.  This leads to each local buffer actually eating 16K of space, which
adds up when there are thousands of them.  I intend to change localbuf.c to
aggregate its requests, which will prevent this particular misbehavior, but
it seems likely that similar scenarios could arise elsewhere, so fixing the
core problem seems wise as well.

17 years agoPrint combining characters (those reported as having zero width by
Tom Lane [Wed, 27 Dec 2006 19:45:36 +0000 (19:45 +0000)]
Print combining characters (those reported as having zero width by
PQdsplen()) normally, instead of replacing them by \uXXXX sequences.
Assume that they in fact occupy zero screen space for formatting purposes.
Per gripe from Michael Fuhr and ensuing discussion.

17 years agoUse FROM clause in example UPDATE commands where appropriate. Also
Tom Lane [Wed, 27 Dec 2006 16:07:36 +0000 (16:07 +0000)]
Use FROM clause in example UPDATE commands where appropriate.  Also
remove long-obsolete statement that there isn't a check for infinite
recursion in view rules.

17 years agoUse "dead" rather than "expired" for vacuumable rows.
Bruce Momjian [Wed, 27 Dec 2006 14:55:17 +0000 (14:55 +0000)]
Use "dead" rather than "expired" for vacuumable rows.

17 years agoFix failure due to accessing an already-freed tuple descriptor in a plan
Tom Lane [Tue, 26 Dec 2006 21:37:20 +0000 (21:37 +0000)]
Fix failure due to accessing an already-freed tuple descriptor in a plan
involving HashAggregate over SubqueryScan (this is the known case, there
may well be more).  The bug is only latent in releases before 8.2 since they
didn't try to access tupletable slots' descriptors during ExecDropTupleTable.
The least bogus fix seems to be to make subqueries share the parent query's
memory context, so that tupdescs they create will have the same lifespan as
those of the parent query.  There are comments in the code envisioning going
even further by not having a separate child EState at all, but that will
require rethinking executor access to range tables, which I don't want to
tackle right now.  Per bug report from Jean-Pierre Pelletier.

17 years agoRepair bug #2839: the various ExecReScan functions need to reset
Tom Lane [Tue, 26 Dec 2006 19:26:46 +0000 (19:26 +0000)]
Repair bug #2839: the various ExecReScan functions need to reset
ps_TupFromTlist in plan nodes that make use of it.  This was being done
correctly in join nodes and Result nodes but not in any relation-scan nodes.
Bug would lead to bogus results if a set-returning function appeared in the
targetlist of a subquery that could be rescanned after partial execution,
for example a subquery within EXISTS().  Bug has been around forever :-(
... surprising it wasn't reported before.

17 years agoRepair bug #2836: SPI_execute_plan returned zero if none of the querytrees
Tom Lane [Tue, 26 Dec 2006 16:56:18 +0000 (16:56 +0000)]
Repair bug #2836: SPI_execute_plan returned zero if none of the querytrees
were marked canSetTag.  While it's certainly correct to return the result
of the last one that is marked canSetTag, it's less clear what to do when
none of them are.  Since plpgsql will complain if zero is returned, the
8.2.0 behavior isn't good.  I've fixed it to restore the prior behavior of
returning the physically last query's result code when there are no
canSetTag queries.

17 years agoRemove incorrect semicolon in example. Joachim Wieland
Tom Lane [Tue, 26 Dec 2006 16:14:58 +0000 (16:14 +0000)]
Remove incorrect semicolon in example.  Joachim Wieland

17 years agoFix memory reallocation condition
Teodor Sigaev [Tue, 26 Dec 2006 14:54:24 +0000 (14:54 +0000)]
Fix memory reallocation condition

17 years agoCall srandom() instead of srand().
Tatsuo Ishii [Tue, 26 Dec 2006 01:02:05 +0000 (01:02 +0000)]
Call srandom() instead of srand().
pgbench calls random() later, so it should have called srandom().
On most platforms except Windows srandom() is actually identical
to srand(), so the bug only bites Windows users.
per bug report from Akio Ishida.

17 years agoMake HISTCONTROL=ignoredups work again (broken by misordering of
Tom Lane [Sun, 24 Dec 2006 19:14:28 +0000 (19:14 +0000)]
Make HISTCONTROL=ignoredups work again (broken by misordering of
operations during recent code refactoring).  Per bug #2840 from Ned Crigler.

17 years agoBring some order and sanity to error handling in the xml patch.
Tom Lane [Sun, 24 Dec 2006 18:25:58 +0000 (18:25 +0000)]
Bring some order and sanity to error handling in the xml patch.
Use a TRY block instead of (inadequate) ad-hoc coding to ensure that
libxml is cleaned up after a failure.  Report the intended SQLCODE
instead of defaulting to XX000.  Avoid risking use of a dangling
pointer by keeping the persistent error buffer in TopMemoryContext.
Be less trusting that error messages don't contain %.

This patch doesn't do anything about changing the way the messages
are put together --- this is just about mechanism.

17 years agoFix machine-dependent crash in sqlchar_to_unicode(). Get rid of
Tom Lane [Sun, 24 Dec 2006 00:57:48 +0000 (00:57 +0000)]
Fix machine-dependent crash in sqlchar_to_unicode().  Get rid of
bletcherous and unsafe manipulation of global encoding setting.
Clean up libxml reporting mechanism a bit (it still looks like a
dangling-pointer crash waiting to happen, though, not to mention
being far less than sane from a localization standpoint).

17 years agoCode review for XML patch. Instill a bit of sanity in the location of
Tom Lane [Sun, 24 Dec 2006 00:29:20 +0000 (00:29 +0000)]
Code review for XML patch.  Instill a bit of sanity in the location of
the XmlExpr code in various lists, use a representation that has some hope
of reverse-listing correctly (though it's still a de-escaping function
shy of correctness), generally try to make it look more like Postgres
coding conventions.

17 years agoSuppress various compiler warnings in new xml code.
Tom Lane [Sat, 23 Dec 2006 04:56:50 +0000 (04:56 +0000)]
Suppress various compiler warnings in new xml code.

17 years agoRemove unnecessary parentheses in if() statements.
Bruce Momjian [Sat, 23 Dec 2006 02:13:24 +0000 (02:13 +0000)]
Remove unnecessary parentheses in if() statements.

17 years agoChange a VACUUM manual page word from 'deleted' to 'expired', so DELETE
Bruce Momjian [Sat, 23 Dec 2006 01:58:40 +0000 (01:58 +0000)]
Change a VACUUM manual page word from 'deleted' to 'expired', so DELETE
and UPDATE are clearly covered by the term.

17 years agoDocument that CREATE TYPE names should not begin with an underscore,
Bruce Momjian [Sat, 23 Dec 2006 01:28:09 +0000 (01:28 +0000)]
Document that CREATE TYPE names should not begin with an underscore,
rather than being disallowed.

17 years agoFor GUC values, check for partial string matches on 'on' and 'off', but
Bruce Momjian [Sat, 23 Dec 2006 00:52:40 +0000 (00:52 +0000)]
For GUC values, check for partial string matches on 'on' and 'off', but
require at least two characters for uniqueness.   This now matches the
behavior of other boolean strings we support, per report from Gurjeet
Singh.