]> granicus.if.org Git - postgresql/log
postgresql
15 years agoReplace now unnecessary goto statements by using return directly.
Magnus Hagander [Fri, 24 Oct 2008 12:48:31 +0000 (12:48 +0000)]
Replace now unnecessary goto statements by using return directly.

15 years agoRemove notes from the frontend SSL source that are incorrect or
Magnus Hagander [Fri, 24 Oct 2008 12:29:11 +0000 (12:29 +0000)]
Remove notes from the frontend SSL source that are incorrect or
end-user documentation that lives in the actual documentation.

15 years agoRemove a "TODO-list" structure at the top of the file, referring back
Magnus Hagander [Fri, 24 Oct 2008 12:24:35 +0000 (12:24 +0000)]
Remove a "TODO-list" structure at the top of the file, referring back
to the old set of SSL patches. Hasn't been updated since, and we keep
the TODOs in the "real" TODO list, really...

15 years agoRemove large parts of the old SSL readme, that consisted of a couple
Magnus Hagander [Fri, 24 Oct 2008 11:48:29 +0000 (11:48 +0000)]
Remove large parts of the old SSL readme, that consisted of a couple
of copy/paste:d emails. Much of the contents had already been migrated
into the main documentation, some was out of date and some just plain
wrong.

Keep the "protocol-flowchart" which can still be useful.

15 years agoFix memory leak when using gsslib parameter in libpq connections
Magnus Hagander [Thu, 23 Oct 2008 16:17:19 +0000 (16:17 +0000)]
Fix memory leak when using gsslib parameter in libpq connections

15 years agoFix an oversight in two different recent patches: nodes that support SRFs
Tom Lane [Thu, 23 Oct 2008 15:29:23 +0000 (15:29 +0000)]
Fix an oversight in two different recent patches: nodes that support SRFs
in their targetlists had better reset ps_TupFromTlist during ReScan calls.
There's no need to back-patch here since nodeAgg and nodeGroup didn't
even pretend to support SRFs in prior releases.

15 years agoRemove useless ps_OuterTupleSlot field from PlanState. I suppose this was
Tom Lane [Thu, 23 Oct 2008 14:34:34 +0000 (14:34 +0000)]
Remove useless ps_OuterTupleSlot field from PlanState.  I suppose this was
used long ago, but in the current code the ecxt_outertuple field of
ExprContext is doing all the work.  Spotted by Ran Tang.

15 years ago* make pg_hba authoption be a set of 0 or more name=value pairs
Magnus Hagander [Thu, 23 Oct 2008 13:31:10 +0000 (13:31 +0000)]
* make pg_hba authoption be a set of 0 or more name=value pairs
* make LDAP use this instead of the hacky previous method to specify
  the DN to bind as
* make all auth options behave the same when they are not compiled
  into the server
* rename "ident maps" to "user name maps", and support them for all
  auth methods that provide an external username

This makes a backwards incompatible change in the format of pg_hba.conf
for the ident, PAM and LDAP authentication methods.

15 years agoFeature T173 "Extended LIKE clause in table definition" is supported
Peter Eisentraut [Thu, 23 Oct 2008 08:52:51 +0000 (08:52 +0000)]
Feature T173 "Extended LIKE clause in table definition" is supported
(INCLUDING/EXCLUDING DEFAULTS)

15 years agoFeature T401 is not listed in the SQL standard. Must have been a mistake.
Peter Eisentraut [Thu, 23 Oct 2008 06:58:02 +0000 (06:58 +0000)]
Feature T401 is not listed in the SQL standard.  Must have been a mistake.

15 years agoWhen estimating without benefit of MCV lists (suggesting that one or both
Tom Lane [Thu, 23 Oct 2008 00:24:50 +0000 (00:24 +0000)]
When estimating without benefit of MCV lists (suggesting that one or both
inputs is unique or nearly so), make eqjoinsel() clamp the ndistinct estimates
to be not more than the estimated number of rows coming from the input
relations.  This allows the estimate to change in response to the selectivity
of restriction conditions on the inputs.

This is a pretty narrow patch and maybe we should be more aggressive about
similarly clamping ndistinct in other cases; but I'm worried about
double-counting the effects of the restriction conditions.  However, it seems
to help for the case exhibited by Grzegorz Jaskiewicz (antijoin against a
small subset of a relation), so let's try this for awhile.

15 years agoDept of better ideas: refrain from creating the planner's placeholder_list
Tom Lane [Wed, 22 Oct 2008 20:17:52 +0000 (20:17 +0000)]
Dept of better ideas: refrain from creating the planner's placeholder_list
until vars are distributed to rels during query_planner() startup.  We don't
really need it before that, and not building it early has some advantages.
First, we don't need to put it through the various preprocessing steps, which
saves some cycles and eliminates the need for a number of routines to support
PlaceHolderInfo nodes at all.  Second, this means one less unused plan for any
sub-SELECT appearing in a placeholder's expression, since we don't build
placeholder_list until after sublink expansion is complete.

15 years agoFix GiST's killing tuple: GISTScanOpaque->curpos wasn't
Teodor Sigaev [Wed, 22 Oct 2008 12:53:56 +0000 (12:53 +0000)]
Fix GiST's killing tuple: GISTScanOpaque->curpos wasn't
correctly set. As result, killtuple() marks as dead
wrong tuple on page. Bug was introduced by me while fixing
possible duplicates during GiST index scan.

15 years agoSQL:2008 alternative syntax for LIMIT/OFFSET:
Peter Eisentraut [Wed, 22 Oct 2008 11:00:34 +0000 (11:00 +0000)]
SQL:2008 alternative syntax for LIMIT/OFFSET:
OFFSET num {ROW|ROWS} FETCH {FIRST|NEXT} [num] {ROW|ROWS} ONLY

15 years agoAdd a concept of "placeholder" variables to the planner. These are variables
Tom Lane [Tue, 21 Oct 2008 20:42:53 +0000 (20:42 +0000)]
Add a concept of "placeholder" variables to the planner.  These are variables
that represent some expression that we desire to compute below the top level
of the plan, and then let that value "bubble up" as though it were a plain
Var (ie, a column value).

The immediate application is to allow sub-selects to be flattened even when
they are below an outer join and have non-nullable output expressions.
Formerly we couldn't flatten because such an expression wouldn't properly
go to NULL when evaluated above the outer join.  Now, we wrap it in a
PlaceHolderVar and arrange for the actual evaluation to occur below the outer
join.  When the resulting Var bubbles up through the join, it will be set to
NULL if necessary, yielding the correct results.  This fixes a planner
limitation that's existed since 7.1.

In future we might want to use this mechanism to re-introduce some form of
Hellerstein's "expensive functions" optimization, ie place the evaluation of
an expensive function at the most suitable point in the plan tree.

15 years agoClean regression.out
Peter Eisentraut [Tue, 21 Oct 2008 10:51:24 +0000 (10:51 +0000)]
Clean regression.out

15 years agoUse format_type_be() instead of TypeNameToString() for some more user-facing
Peter Eisentraut [Tue, 21 Oct 2008 10:38:51 +0000 (10:38 +0000)]
Use format_type_be() instead of TypeNameToString() for some more user-facing
error messages where the type existence is established.

15 years agoAllow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPE
Peter Eisentraut [Tue, 21 Oct 2008 08:38:16 +0000 (08:38 +0000)]
Allow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPE
alongside our traditional syntax.

15 years agoProperly access a buffer's LSN using existing access macros instead of abusing
Alvaro Herrera [Mon, 20 Oct 2008 21:11:15 +0000 (21:11 +0000)]
Properly access a buffer's LSN using existing access macros instead of abusing
knowledge of page layout.

Stolen from Jonah Harris' CRC patch

15 years agoThese functions no longer return a value, per complaint from gothic_moth via
Alvaro Herrera [Mon, 20 Oct 2008 20:38:24 +0000 (20:38 +0000)]
These functions no longer return a value, per complaint from gothic_moth via
Zdenek Kotala.

15 years agoRework subtransaction commit protocol for hot standby.
Alvaro Herrera [Mon, 20 Oct 2008 19:18:18 +0000 (19:18 +0000)]
Rework subtransaction commit protocol for hot standby.

This patch eliminates the marking of subtransactions as SUBCOMMITTED in pg_clog
during their commit; instead they remain in-progress until main transaction
commit.  At main transaction commit, the commit protocol is atomic-by-page
instead of one transaction at a time.  To avoid a race condition with some
subtransactions appearing committed before others in the case where they span
more than one pg_clog page, we conserve the logic that marks them subcommitted
before marking the parent committed.

Simon Riggs with minor help from me

15 years agoRemove support of backward scan in GiST. Per discussion
Teodor Sigaev [Mon, 20 Oct 2008 16:35:14 +0000 (16:35 +0000)]
Remove support of backward scan in GiST. Per discussion
http://archives.postgresql.org/pgsql-hackers/2008-10/msg00857.php

15 years agoSQL 200N -> SQL:2003
Peter Eisentraut [Mon, 20 Oct 2008 14:26:28 +0000 (14:26 +0000)]
SQL 200N -> SQL:2003

15 years agoFeature T411 is not found in SQL:2003 or 2008 anymore, so it must have been
Peter Eisentraut [Mon, 20 Oct 2008 14:22:57 +0000 (14:22 +0000)]
Feature T411 is not found in SQL:2003 or 2008 anymore, so it must have been
dropped or it was a mistake.

15 years agoFeature T152 "DISTINCT predicate with negation" is supported.
Peter Eisentraut [Mon, 20 Oct 2008 13:58:18 +0000 (13:58 +0000)]
Feature T152 "DISTINCT predicate with negation" is supported.

15 years agoRemove mark/restore support in GIN and GiST indexes.
Teodor Sigaev [Mon, 20 Oct 2008 13:39:44 +0000 (13:39 +0000)]
Remove mark/restore support in GIN and GiST indexes.
Per Tom's comment.
Also revome useless GISTScanOpaque->flags field.

15 years agoFeature F402 "Named column joins for LOBs, arrays, and multisets" is
Peter Eisentraut [Mon, 20 Oct 2008 12:47:48 +0000 (12:47 +0000)]
Feature F402 "Named column joins for LOBs, arrays, and multisets" is
supported, to the extent that LOBs, arrays, and multisets are supported.

15 years agoAS is no longer required in SELECT list
Peter Eisentraut [Mon, 20 Oct 2008 12:09:46 +0000 (12:09 +0000)]
AS is no longer required in SELECT list

15 years agoUpdate compatibility section of TRUNCATE for SQL:2008 final.
Peter Eisentraut [Sat, 18 Oct 2008 07:49:46 +0000 (07:49 +0000)]
Update compatibility section of TRUNCATE for SQL:2008 final.

15 years agoFix broken SQL features data, per buildfarm results.
Tom Lane [Sat, 18 Oct 2008 02:53:26 +0000 (02:53 +0000)]
Fix broken SQL features data, per buildfarm results.

15 years agoUpdate feature list for SQL:2008.
Peter Eisentraut [Sat, 18 Oct 2008 00:35:32 +0000 (00:35 +0000)]
Update feature list for SQL:2008.

15 years agoRemove useless mark/restore support in hash index AM, per discussion.
Tom Lane [Fri, 17 Oct 2008 23:50:57 +0000 (23:50 +0000)]
Remove useless mark/restore support in hash index AM, per discussion.
(I'm leaving GiST/GIN cleanup to Teodor.)

15 years agoRefactor some duplicate code to set up formatted_log_time and
Alvaro Herrera [Fri, 17 Oct 2008 22:56:16 +0000 (22:56 +0000)]
Refactor some duplicate code to set up formatted_log_time and
formatted_start_time.

15 years agoAdd a new column to pg_am to specify whether an index AM supports backward
Tom Lane [Fri, 17 Oct 2008 22:10:30 +0000 (22:10 +0000)]
Add a new column to pg_am to specify whether an index AM supports backward
scanning; GiST and GIN do not, and it seems like too much trouble to make
them do so.  By teaching ExecSupportsBackwardScan() about this restriction,
we ensure that the planner will protect a scroll cursor from the problem
by adding a Materialize node.

In passing, fix another longstanding bug in the same area: backwards scan of
a plan with set-returning functions in the targetlist did not work either,
since the TupFromTlist expansion code pays no attention to direction (and
has no way to run a SRF backwards anyway).  Again the fix is to make
ExecSupportsBackwardScan check this restriction.

Also adjust the index AM API specification to note that mark/restore support
is unnecessary if the AM can't produce ordered output.

15 years agoSalvage a little bit of work from a failed patch: simplify and speed up
Tom Lane [Fri, 17 Oct 2008 20:27:24 +0000 (20:27 +0000)]
Salvage a little bit of work from a failed patch: simplify and speed up
set_rel_width().  The code had been catering for the possibility of different
varnos in the relation targetlist, but this is impossible for a base relation
(and if it were possible, putting all the widths in the same RelOptInfo would
be wrong anyway).

15 years agoImprove comments about RelOptInfo.reltargetlist.
Tom Lane [Fri, 17 Oct 2008 20:23:45 +0000 (20:23 +0000)]
Improve comments about RelOptInfo.reltargetlist.

15 years agoImprove headeline generation. Now headline can contain
Teodor Sigaev [Fri, 17 Oct 2008 18:05:19 +0000 (18:05 +0000)]
Improve headeline generation. Now headline can contain
several fragments a-la Google.

Sushant Sinha <sushant354@gmail.com>

15 years agoFix small bug in headline generation.
Teodor Sigaev [Fri, 17 Oct 2008 17:27:46 +0000 (17:27 +0000)]
Fix small bug in headline generation.
Patch from Sushant Sinha <sushant354@gmail.com>
http://archives.postgresql.org/pgsql-hackers/2008-07/msg00785.php

15 years agoDuring repeated rescan of GiST index it's possible that scan key
Teodor Sigaev [Fri, 17 Oct 2008 17:02:21 +0000 (17:02 +0000)]
During repeated rescan of GiST index it's possible that scan key
is NULL but SK_SEARCHNULL is not set. Add checking IS NULL of keys
to set during key initialization. If key is NULL and SK_SEARCHNULL is not
set then nothnig can be satisfied.
With assert-enabled compilation that causes coredump.

Bug was introduced in 8.3 by support of IS NULL index scan.

15 years agoFix a small memory leak in ExecReScanAgg() in the hashed aggregation case.
Neil Conway [Thu, 16 Oct 2008 19:25:55 +0000 (19:25 +0000)]
Fix a small memory leak in ExecReScanAgg() in the hashed aggregation case.
In the previous coding, the list of columns that needed to be hashed on
was allocated in the per-query context, but we reallocated every time
the Agg node was rescanned. Since this information doesn't change over
a rescan, just construct the list of columns once during ExecInitAgg().

15 years agoReduce chatter from _dosmaperr() when used in FRONTEND code.
Tom Lane [Thu, 16 Oct 2008 13:27:34 +0000 (13:27 +0000)]
Reduce chatter from _dosmaperr() when used in FRONTEND code.
ITAGAKI Takahiro

15 years agoFix SPI_getvalue and SPI_getbinval to range-check the given attribute number
Tom Lane [Thu, 16 Oct 2008 13:23:21 +0000 (13:23 +0000)]
Fix SPI_getvalue and SPI_getbinval to range-check the given attribute number
according to the TupleDesc's natts, not the number of physical columns in the
tuple.  The previous coding would do the wrong thing in cases where natts is
different from the tuple's column count: either incorrectly report error when
it should just treat the column as null, or actually crash due to indexing off
the end of the TupleDesc's attribute array.  (The second case is probably not
possible in modern PG versions, due to more careful handling of inheritance
cases than we once had.  But it's still a clear lack of robustness here.)

The incorrect error indication is ignored by all callers within the core PG
distribution, so this bug has no symptoms visible within the core code, but
it might well be an issue for add-on packages.  So patch all the way back.

15 years agoMake the system-attributes loop in AddNewAttributeTuples depend on
Tom Lane [Tue, 14 Oct 2008 23:27:40 +0000 (23:27 +0000)]
Make the system-attributes loop in AddNewAttributeTuples depend on
lengthof(SysAtt) not FirstLowInvalidHeapAttributeNumber, for consistency with
the other uses of the SysAtt array, and to make it clearer that it doesn't
walk off the end of that array.

15 years agoAdd a defense to prevent storing pseudo-type data into index columns.
Tom Lane [Tue, 14 Oct 2008 21:47:39 +0000 (21:47 +0000)]
Add a defense to prevent storing pseudo-type data into index columns.
Formerly, the lack of any opclasses that could accept such data was enough
of a defense, but now with a "record" opclass we need to check more carefully.
(You can still use that opclass for an index, but you have to store a named
composite type not an anonymous one.)

15 years agoUpdate citext expected output for recent change in error message location
Tom Lane [Tue, 14 Oct 2008 21:39:41 +0000 (21:39 +0000)]
Update citext expected output for recent change in error message location
pointers.  This is only a whitespace change, which ought to be ignored
by regression testing, but for some reason buildfarm member spoonbill
doesn't like it.

15 years agoEnsure that CLUSTER leaves the toast table and index with consistent names,
Alvaro Herrera [Tue, 14 Oct 2008 17:19:50 +0000 (17:19 +0000)]
Ensure that CLUSTER leaves the toast table and index with consistent names,
by renaming the new copies after the catalog games.

15 years agoExtend the date type to support infinity and -infinity, analogously to
Tom Lane [Tue, 14 Oct 2008 17:12:33 +0000 (17:12 +0000)]
Extend the date type to support infinity and -infinity, analogously to
the timestamp types.  Turns out this doesn't even reduce the available
range of dates, since the restriction to dates that work for Julian-date
arithmetic is much tighter than the int32 range anyway.  Per a longstanding
TODO item.

15 years agoFix EncodeSpecialTimestamp to throw error on unrecognized input, rather than
Tom Lane [Tue, 14 Oct 2008 15:44:29 +0000 (15:44 +0000)]
Fix EncodeSpecialTimestamp to throw error on unrecognized input, rather than
returning a failure code that none of its callers bothered to check for.

15 years agoFixed parsing of parameters. Added regression test for this.
Michael Meskes [Tue, 14 Oct 2008 09:31:05 +0000 (09:31 +0000)]
Fixed parsing of parameters. Added regression test for this.

15 years agoFix oversight in the relation forks patch: forgot to copy fork number to
Heikki Linnakangas [Tue, 14 Oct 2008 08:06:39 +0000 (08:06 +0000)]
Fix oversight in the relation forks patch: forgot to copy fork number to
fsync requests. This should fix the installcheck failure of the buildfarm
member "kudu".

15 years agoAdd docs and regression test about sorting the output of a recursive query in
Tom Lane [Tue, 14 Oct 2008 00:41:35 +0000 (00:41 +0000)]
Add docs and regression test about sorting the output of a recursive query in
depth-first search order.  Upon close reading of SQL:2008, it seems that the
spec's SEARCH DEPTH FIRST and SEARCH BREADTH FIRST options do not actually
guarantee any particular result order: what they do is provide a constructed
column that the user can then sort on in the outer query.  So this is actually
just as much functionality ...

15 years agoEliminate unnecessary array[] decoration in examples of recursive cycle
Tom Lane [Tue, 14 Oct 2008 00:12:44 +0000 (00:12 +0000)]
Eliminate unnecessary array[] decoration in examples of recursive cycle
detection.

15 years agoImplement comparison of generic records (composite types), and invent a
Tom Lane [Mon, 13 Oct 2008 16:25:20 +0000 (16:25 +0000)]
Implement comparison of generic records (composite types), and invent a
pseudo-type record[] to represent arrays of possibly-anonymous composite
types.  Since composite datums carry their own type identification, no
extra knowledge is needed at the array level.

The main reason for doing this right now is that it is necessary to support
the general case of detection of cycles in recursive queries: if you need to
compare more than one column to detect a cycle, you need to compare a ROW()
to an array built from ROW()s, at least if you want to do it as the spec
suggests.  Add some documentation and regression tests concerning the cycle
detection issue.

15 years agoUpdate oidjoins test to match CVS HEAD.
Tom Lane [Mon, 13 Oct 2008 12:59:57 +0000 (12:59 +0000)]
Update oidjoins test to match CVS HEAD.

15 years agoFix bogus comment emitted by make_oidjoins_check, per Greg Stark.
Tom Lane [Mon, 13 Oct 2008 12:59:29 +0000 (12:59 +0000)]
Fix bogus comment emitted by make_oidjoins_check, per Greg Stark.

15 years agoFix corner case wherein a WorkTableScan node could get initialized before the
Tom Lane [Mon, 13 Oct 2008 00:41:41 +0000 (00:41 +0000)]
Fix corner case wherein a WorkTableScan node could get initialized before the
RecursiveUnion to which it refers.  It turns out that we can just postpone the
relevant initialization steps until the first exec call for the node, by which
time the ancestor node must surely be initialized.  Per report from Greg Stark.

15 years agoAdd missing header.
Alvaro Herrera [Sat, 11 Oct 2008 00:09:33 +0000 (00:09 +0000)]
Add missing header.

15 years agoFix COPY documentation to not imply that HEADER can be used outside CSV mode.
Tom Lane [Fri, 10 Oct 2008 21:46:34 +0000 (21:46 +0000)]
Fix COPY documentation to not imply that HEADER can be used outside CSV mode.
Per gripe from Bill Thoen.

15 years agoFix small query-lifespan memory leak introduced by 8.4 change in index AM API
Tom Lane [Fri, 10 Oct 2008 14:17:08 +0000 (14:17 +0000)]
Fix small query-lifespan memory leak introduced by 8.4 change in index AM API
for bitmap index scans.  Per report and test case from Kevin Grittner.

15 years agoFix omission of DiscardStmt in GetCommandLogLevel, per report from Hubert
Tom Lane [Fri, 10 Oct 2008 13:48:05 +0000 (13:48 +0000)]
Fix omission of DiscardStmt in GetCommandLogLevel, per report from Hubert
Depesz Lubaczewski.  In HEAD, also move a couple of other cases to make the
code ordering match up with ProcessUtility.

15 years agoFixed "create role" parsing to accept optional "with" argument.
Michael Meskes [Fri, 10 Oct 2008 12:17:18 +0000 (12:17 +0000)]
Fixed "create role" parsing to accept optional "with" argument.

15 years agoUn-break non-NLS builds.
Tom Lane [Thu, 9 Oct 2008 22:23:46 +0000 (22:23 +0000)]
Un-break non-NLS builds.

15 years agoFix two flaws in comments I just introduced, pointed out by Tom.
Alvaro Herrera [Thu, 9 Oct 2008 22:22:31 +0000 (22:22 +0000)]
Fix two flaws in comments I just introduced, pointed out by Tom.

15 years agoImprove the recently-added code for inlining set-returning functions so that
Tom Lane [Thu, 9 Oct 2008 19:27:40 +0000 (19:27 +0000)]
Improve the recently-added code for inlining set-returning functions so that
it can handle functions returning setof record.  The case was left undone
originally, but it turns out to be simple to fix.

15 years agoAdd initial plpgsql translation (with lots of fuzzies)
Alvaro Herrera [Thu, 9 Oct 2008 18:15:28 +0000 (18:15 +0000)]
Add initial plpgsql translation (with lots of fuzzies)

15 years agoImprove translatability of error messages for external modules by tweaking
Alvaro Herrera [Thu, 9 Oct 2008 17:24:05 +0000 (17:24 +0000)]
Improve translatability of error messages for external modules by tweaking
the ereport macro.  Included in this commit are enough files for starting
plpgsql, plpython, plperl and pltcl translations.

15 years agoFix overly tense optimization of PLpgSQL_func_hashkey: we must represent
Tom Lane [Thu, 9 Oct 2008 16:35:07 +0000 (16:35 +0000)]
Fix overly tense optimization of PLpgSQL_func_hashkey: we must represent
the isTrigger state explicitly, not rely on nonzero-ness of trigrelOid
to indicate trigger-hood, because trigrelOid will be left zero when compiling
for validation.  The (useless) function hash entry built by the validator
was able to match an ordinary non-trigger call later in the same session,
thereby bypassing the check that is supposed to prevent such a call.
Per report from Alvaro.

It might be worth suppressing the useless hash entry altogether, but
that's a bigger change than I want to consider back-patching.

Back-patch to 8.0.  7.4 doesn't have the problem because it doesn't
have validation mode.

15 years agoFix crash in bytea-to-XML mapping when the source value is toasted.
Tom Lane [Thu, 9 Oct 2008 15:49:04 +0000 (15:49 +0000)]
Fix crash in bytea-to-XML mapping when the source value is toasted.
Report and fix by Michael McMaster.  Some minor code beautification by me,
also avoid memory leaks in the special-case paths.

15 years agoForce a checkpoint in CREATE DATABASE before starting to copy the files,
Heikki Linnakangas [Thu, 9 Oct 2008 10:34:06 +0000 (10:34 +0000)]
Force a checkpoint in CREATE DATABASE before starting to copy the files,
to process any pending unlinks for the source database.

Before, if you dropped a relation in the template database just before
CREATE DATABASE, and a checkpoint happened during copydir(), the checkpoint
might delete a file that we're just about to copy, causing lstat() in
copydir() to fail with ENOENT.

Backpatch to 8.3, where the pending unlinks were introduced.

Per report by Matthew Wakeling and analysis by Tom Lane.

15 years agoModify the parser's error reporting to include a specific hint for the case
Tom Lane [Wed, 8 Oct 2008 01:14:44 +0000 (01:14 +0000)]
Modify the parser's error reporting to include a specific hint for the case
of referencing a WITH item that's not yet in scope according to the SQL
spec's semantics.  This seems to be an easy error to make, and the bare
"relation doesn't exist" message doesn't lead one's mind in the correct
direction to fix it.

15 years agoUpdate Japanese FAQ.
Bruce Momjian [Tue, 7 Oct 2008 21:26:41 +0000 (21:26 +0000)]
Update Japanese FAQ.

Jun Kuwamura

15 years agoImprove some of the comments in fsmpage.c.
Tom Lane [Tue, 7 Oct 2008 21:10:11 +0000 (21:10 +0000)]
Improve some of the comments in fsmpage.c.

15 years agoExtend CTE patch to support recursive UNION (ie, without ALL). The
Tom Lane [Tue, 7 Oct 2008 19:27:04 +0000 (19:27 +0000)]
Extend CTE patch to support recursive UNION (ie, without ALL).  The
implementation uses an in-memory hash table, so it will poop out for very
large recursive results ... but the performance characteristics of a
sort-based implementation would be pretty unpleasant too.

15 years agoSynced parser.
Michael Meskes [Tue, 7 Oct 2008 12:43:55 +0000 (12:43 +0000)]
Synced parser.

15 years agoWhen a relation is moved to another tablespace, we can't assume that we can
Heikki Linnakangas [Tue, 7 Oct 2008 11:15:41 +0000 (11:15 +0000)]
When a relation is moved to another tablespace, we can't assume that we can
use the old relfilenode in the new tablespace. There might be another relation
in the new tablespace with the same relfilenode, so we must generate a fresh
relfilenode in the new tablespace.

The 8.3 patch to let deleted relation files linger as zero-length files until
the next checkpoint made this more obvious: moving a relation from one table
space another, and then back again, caused a collision with the lingering
file.

Back-patch to 8.1. The issue is present in 8.0 as well, but it doesn't seem
worth fixing there, because we didn't have protection from OID collisions
after OID wraparound before 8.1.

Report by Guillaume Lelarge.

15 years agoImprove parser error location for cases where an INSERT or UPDATE command
Tom Lane [Tue, 7 Oct 2008 01:47:55 +0000 (01:47 +0000)]
Improve parser error location for cases where an INSERT or UPDATE command
supplies an expression that can't be coerced to the target column type.
The code previously attempted to point at the target column name, which
doesn't work at all in an INSERT with omitted column name list, and is
also not remarkably helpful when the problem is buried somewhere in a
long INSERT-multi-VALUES command.  Make it point at the failed expression
instead.

15 years agoImprove backend flowchart to show more detail.
Bruce Momjian [Tue, 7 Oct 2008 00:19:48 +0000 (00:19 +0000)]
Improve backend flowchart to show more detail.

15 years agoFix oversight in recent patch to support multiple read positions in
Tom Lane [Tue, 7 Oct 2008 00:05:55 +0000 (00:05 +0000)]
Fix oversight in recent patch to support multiple read positions in
tuplestore: in READFILE state tuplestore_select_read_pointer must
save the current file seek position in the read pointer being
deactivated.

15 years agoFix up ruleutils.c for CTE features. The main problem was that
Tom Lane [Mon, 6 Oct 2008 20:29:38 +0000 (20:29 +0000)]
Fix up ruleutils.c for CTE features.  The main problem was that
get_name_for_var_field didn't have enough context to interpret a reference to
a CTE query's output.  Fixing this requires separate hacks for the regular
deparse case (pg_get_ruledef) and for the EXPLAIN case, since the available
context information is quite different.  It's pretty nearly parallel to the
existing code for SUBQUERY RTEs, though.  Also, add code to make sure we
qualify a relation name that matches a CTE name; else the CTE will mistakenly
capture the reference when reloading the rule.

In passing, fix a pre-existing problem with get_name_for_var_field not working
on variables in targetlists of SubqueryScan plan nodes.  Although latent all
along, this wasn't a problem until we made EXPLAIN VERBOSE try to print
targetlists.  To do this, refactor the deparse_context_for_plan API so that
the special case for SubqueryScan is all on ruleutils.c's side.

15 years agoWhen expanding a whole-row Var into a RowExpr during ResolveNew(), attach
Tom Lane [Mon, 6 Oct 2008 17:39:26 +0000 (17:39 +0000)]
When expanding a whole-row Var into a RowExpr during ResolveNew(), attach
the column alias names of the RTE referenced by the Var to the RowExpr.
This is needed to allow ruleutils.c to correctly deparse FieldSelect nodes
referencing such a construct.  Per my recent bug report.

Adding a field to RowExpr forces initdb (because of stored rules changes)
so this solution is not back-patchable; which is unfortunate because 8.2
and 8.3 have this issue.  But it only affects EXPLAIN for some pretty odd
corner cases, so we can probably live without a solution for the back
branches.

15 years agoFix GetCTEForRTE() to deal with the possibility that the RTE it's given came
Tom Lane [Mon, 6 Oct 2008 15:15:22 +0000 (15:15 +0000)]
Fix GetCTEForRTE() to deal with the possibility that the RTE it's given came
from a query level above the current ParseState.

15 years agoUse fork names instead of numbers in the file names for additional
Heikki Linnakangas [Mon, 6 Oct 2008 14:13:17 +0000 (14:13 +0000)]
Use fork names instead of numbers in the file names for additional
relation forks. While the file names are not visible to users, for those
that do peek into the data directory, it's nice to have more descriptive
names. Per Greg Stark's suggestion.

15 years agoEditorial improvements to description of pg_settings view.
Tom Lane [Mon, 6 Oct 2008 13:59:37 +0000 (13:59 +0000)]
Editorial improvements to description of pg_settings view.

15 years agoAdd columns boot_val and reset_val to the pg_settings view, to expose
Magnus Hagander [Mon, 6 Oct 2008 13:05:40 +0000 (13:05 +0000)]
Add columns boot_val and reset_val to the pg_settings view, to expose
the value a parameter has at server start and will have after RESET,
respectively.

Greg Smith, with some modifications by me.

15 years agoIndex FSMs needs to be vacuumed as well. Report by Jeff Davis.
Heikki Linnakangas [Mon, 6 Oct 2008 08:04:11 +0000 (08:04 +0000)]
Index FSMs needs to be vacuumed as well. Report by Jeff Davis.

15 years agoRandom speculation about the reason for PPC64 buildfarm failures:
Tom Lane [Mon, 6 Oct 2008 05:03:27 +0000 (05:03 +0000)]
Random speculation about the reason for PPC64 buildfarm failures:
maybe isalnum is returning a value with the low-order byte all zero?

15 years agoExperimental patch to see if it fixes MSVC builds ...
Tom Lane [Mon, 6 Oct 2008 02:55:20 +0000 (02:55 +0000)]
Experimental patch to see if it fixes MSVC builds ...

15 years agoFix the implicit-RTE code to be able to handle implicit RTEs for CTEs, as
Tom Lane [Mon, 6 Oct 2008 02:12:56 +0000 (02:12 +0000)]
Fix the implicit-RTE code to be able to handle implicit RTEs for CTEs, as
well as regular tables.  Per discussion, this seems necessary to meet the
principle of least astonishment.

In passing, simplify the error messages in warnAutoRange().  Now that we
have parser error position info for these errors, it doesn't seem very
useful to word the error message differently depending on whether we are
inside a sub-select or not.

15 years agoFix a missed case in int8-exp-three-digits.out, per buildfarm results.
Tom Lane [Mon, 6 Oct 2008 00:07:28 +0000 (00:07 +0000)]
Fix a missed case in int8-exp-three-digits.out, per buildfarm results.

15 years agoTweak the overflow checks in integer division functions to complain if the
Tom Lane [Sun, 5 Oct 2008 23:18:37 +0000 (23:18 +0000)]
Tweak the overflow checks in integer division functions to complain if the
machine produces zero (rather than the more usual minimum-possible-integer)
for the only possible overflow case.  This has been seen to occur for at least
some word widths on some hardware, and it's cheap enough to check for
everywhere.  Per Peter's analysis of buildfarm reports.

This could be back-patched, but in the absence of any gripes from the field
I doubt it's worth the trouble.

15 years agoImprove behavior of WITH RECURSIVE with an untyped literal in the
Tom Lane [Sun, 5 Oct 2008 22:50:55 +0000 (22:50 +0000)]
Improve behavior of WITH RECURSIVE with an untyped literal in the
non-recursive term.  Per an example from Dickson S. Guedes.

15 years agoFix markTargetListOrigin() to not fail on a simple-Var reference to a
Tom Lane [Sun, 5 Oct 2008 22:20:17 +0000 (22:20 +0000)]
Fix markTargetListOrigin() to not fail on a simple-Var reference to a
recursive CTE that we're still in progress of analyzing.  Add a similar guard
to the similar code in expandRecordVariable(), and tweak regression tests to
cover this case.  Per report from Dickson S. Guedes.

15 years agoRemove some unportable tests
Peter Eisentraut [Sun, 5 Oct 2008 18:56:09 +0000 (18:56 +0000)]
Remove some unportable tests

15 years agoRemove obsolete internal functions istrue, isfalse, isnottrue, isnotfalse,
Peter Eisentraut [Sun, 5 Oct 2008 17:33:17 +0000 (17:33 +0000)]
Remove obsolete internal functions istrue, isfalse, isnottrue, isnotfalse,
nullvalue, nonvalue.  A long time ago, these were used to implement the SQL
constructs IS TRUE, etc.

15 years agoReverse int8.out and int8-exp-three-digits.out mixup.
Peter Eisentraut [Sun, 5 Oct 2008 15:46:35 +0000 (15:46 +0000)]
Reverse int8.out and int8-exp-three-digits.out mixup.

15 years agoAdditional test coverage for int8 type (int8.c)
Peter Eisentraut [Sun, 5 Oct 2008 14:26:30 +0000 (14:26 +0000)]
Additional test coverage for int8 type (int8.c)
int8-exp-three-digits.out update untested, might need refinement.

15 years agoAdditional test coverage for boolean type (bool.c)
Peter Eisentraut [Sun, 5 Oct 2008 14:20:03 +0000 (14:20 +0000)]
Additional test coverage for boolean type (bool.c)

15 years agoImplement SQL-standard WITH clauses, including WITH RECURSIVE.
Tom Lane [Sat, 4 Oct 2008 21:56:55 +0000 (21:56 +0000)]
Implement SQL-standard WITH clauses, including WITH RECURSIVE.

There are some unimplemented aspects: recursive queries must use UNION ALL
(should allow UNION too), and we don't have SEARCH or CYCLE clauses.
These might or might not get done for 8.4, but even without them it's a
pretty useful feature.

There are also a couple of small loose ends and definitional quibbles,
which I'll send a memo about to pgsql-hackers shortly.  But let's land
the patch now so we can get on with other development.

Yoshiyuki Asaba, with lots of help from Tatsuo Ishii and Tom Lane

15 years agoAdditional string function tests for coverage of oracle_compat.c
Peter Eisentraut [Sat, 4 Oct 2008 13:55:45 +0000 (13:55 +0000)]
Additional string function tests for coverage of oracle_compat.c

15 years agoAdd a note about how to check for bare < and & in SGML docs, before the
Tom Lane [Sat, 4 Oct 2008 02:19:08 +0000 (02:19 +0000)]
Add a note about how to check for bare < and & in SGML docs, before the
knowledge disappears again.