- 09 Oct, 2008 1 commit
-
-
Heikki Linnakangas authored
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.
-
- 08 Oct, 2008 1 commit
-
-
Tom Lane authored
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.
-
- 07 Oct, 2008 8 commits
-
-
Bruce Momjian authored
Jun Kuwamura
-
Tom Lane authored
-
Tom Lane authored
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.
-
Michael Meskes authored
-
Heikki Linnakangas authored
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.
-
Tom Lane authored
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.
-
Bruce Momjian authored
-
Tom Lane authored
tuplestore: in READFILE state tuplestore_select_read_pointer must save the current file seek position in the read pointer being deactivated.
-
- 06 Oct, 2008 11 commits
-
-
Tom Lane authored
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.
-
Tom Lane authored
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.
-
Tom Lane authored
from a query level above the current ParseState.
-
Heikki Linnakangas authored
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.
-
Tom Lane authored
-
Magnus Hagander authored
the value a parameter has at server start and will have after RESET, respectively. Greg Smith, with some modifications by me.
-
Heikki Linnakangas authored
-
Tom Lane authored
maybe isalnum is returning a value with the low-order byte all zero?
-
Tom Lane authored
-
Tom Lane authored
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.
-
Tom Lane authored
-
- 05 Oct, 2008 8 commits
-
-
Tom Lane authored
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.
-
Tom Lane authored
non-recursive term. Per an example from Dickson S. Guedes.
-
Tom Lane authored
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.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
nullvalue, nonvalue. A long time ago, these were used to implement the SQL constructs IS TRUE, etc.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
int8-exp-three-digits.out update untested, might need refinement.
-
Peter Eisentraut authored
-
- 04 Oct, 2008 3 commits
-
-
Tom Lane authored
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
-
Peter Eisentraut authored
-
Tom Lane authored
knowledge disappears again.
-
- 03 Oct, 2008 4 commits
-
-
Peter Eisentraut authored
input formats.
-
Peter Eisentraut authored
changes. Add some documenting comments.
-
Peter Eisentraut authored
builds. It is too complicated to fix in another way for now.
-
Heikki Linnakangas authored
name of a fork ('main' or 'fsm', at the moment) to pg_relation_size() to get the size of a specific fork. Defaults to 'main', if none given. While we're at it, modify pg_relation_size to take a regclass as argument, instead of separate variants taking oid and name. This change is transparent to typical use where the table name is passed as a string literal, like pg_relation_size('table'), but will break queries like pg_relation_size(namecol), where namecol is of type name. text-type input still works, and using a non-schema-qualified table name is not very reliable anyway, so this is unlikely to break anyone's queries in practice.
-
- 02 Oct, 2008 4 commits
-
-
Bruce Momjian authored
code in 8.4.
-
Tom Lane authored
when using --enable-integer-datetimes and a non-ISO datestyle. Ron Mayer
-
Tom Lane authored
-
Heikki Linnakangas authored
large enough for block numbers higher than 2^31. The old pre-FSM-rewrite pg_freespacemap implementation got this right. While we're at it, remove some unnecessary #includes.
-