Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Release proclock immediately in RemoveFromWaitQueue() if it represents | Tom Lane | 2005-03-01 |
| | | | | | | no held locks. This maintains the invariant that proclocks are present only for procs that are holding or awaiting a lock; when this is not true, LockRelease will fail. Per report from Stephen Clouse. | ||
* | Document that only a table's owner may TRUNCATE it. Per Keith Worthington. | Tom Lane | 2005-02-22 |
| | |||
* | Ensure that the resolved datatype of any unknown Param is propagated | Tom Lane | 2005-02-19 |
| | | | | | into the sub-SELECT targetlist when it appears in the context INSERT INTO foo SELECT $1 ... Per report from Abhijit Menon-Sen. | ||
* | ALTER LANGUAGE RENAME has never worked. Per Sergey Yatskevich. | Tom Lane | 2005-02-14 |
| | |||
* | Back-patch fix for a typo that unintentionally disabled backward scans | Tom Lane | 2005-02-10 |
| | | | | for all SPI-created cursors. | ||
* | If we're gonna check for array overrun, we really should do so before | Tom Lane | 2005-02-08 |
| | | | | overrunning the array, not after. | ||
* | Prevent 4 more buffer overruns in the PL/PgSQL parser. This is just a | Neil Conway | 2005-02-07 |
| | | | | | minimally-invasive fix for stable branches; a cleaner fix will be committed to HEAD soon. | ||
* | Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS. Turns out | Tom Lane | 2005-02-06 |
| | | | | | | | there are corner cases involving dropping toasted columns in which the previous coding would fail, too: the new version of the table might not have any TOAST table, but we'd still propagate possibly-wide values of dropped columns forward. | ||
* | Back-port heap_deformtuple() into 7.4 branch; needed for planned fix for | Tom Lane | 2005-02-06 |
| | | | | CLUSTER failure after ALTER TABLE SET WITHOUT OIDS. | ||
* | Recommend security@postgresql.org as the contact point for security-related ↵REL7_4_7 | Tom Lane | 2005-01-30 |
| | | | | bugs. | ||
* | Stamp release 7.4.7. | Tom Lane | 2005-01-30 |
| | |||
* | We haven't had a fixed limit on rule recursion depth since 7.3 ... | Tom Lane | 2005-01-29 |
| | | | | but the documentation still said so. | ||
* | Make sure contrib C functions are marked strict where needed. | Tom Lane | 2005-01-29 |
| | | | | Kris Jurka | ||
* | Check that aggregate creator has the right to execute the transition | Tom Lane | 2005-01-27 |
| | | | | functions of the aggregate, at both aggregate creation and execution times. | ||
* | Now that I look at it, int_array_enum() didn't work either. | Tom Lane | 2005-01-27 |
| | |||
* | Fix security and 64-bit issues in contrib/intagg. This code could | Tom Lane | 2005-01-27 |
| | | | | | stand to be rewritten altogether, but for now just stick a finger in the dike. | ||
* | Back-patch 8.0 version of plperl_hash_from_tuple() into prior releases | Tom Lane | 2005-01-26 |
| | | | | | to fix failure to cope with quote marks in field values; not to mention that it is shorter and faster. Per report from Charles Haron. | ||
* | Mark the text_soundex() function as "strict", to avoid crashing on NULL | Neil Conway | 2005-01-26 |
| | | | | input. Also, may as well mark it "cacheable" as well. From Kris Jurka. | ||
* | Disallow LOAD to non-superusers. Per report from John Heasman. | Tom Lane | 2005-01-24 |
| | |||
* | Fix memory leak in rtdosplit, per report from Clive Page. | Tom Lane | 2005-01-24 |
| | |||
* | The result of a FULL or RIGHT join can't be assumed to be sorted by the | Tom Lane | 2005-01-23 |
| | | | | | left input's sorting, because null rows may be inserted at various points. Per report from Ferenc Lutischá¸n. | ||
* | Prevent overrunning a heap-allocated buffer if more than 1024 parameters | Neil Conway | 2005-01-21 |
| | | | | | | to a refcursor declaration are specified. This is a minimally-invasive fix for the buffer overrun -- a more thorough cleanup will be checked into HEAD. | ||
* | Fix mapping infinite timestamp values to arbitrary dates. | Kris Jurka | 2005-01-13 |
| | | | | Report from Oliver Siegmar. | ||
* | interval_out failed to mention 'ago' for negative intervals in SQL and | Tom Lane | 2005-01-11 |
| | | | | GERMAN datestyles. Ancient bug reported by Terry Lee Tucker. | ||
* | Avoid memory leakage during VACUUM FULL when an index expression or | Tom Lane | 2004-12-23 |
| | | | | | index predicate uses temporary memory for evaluation. Per example from Jean-Gerard Pailloncy. | ||
* | Make array_cat more paranoid about checking datatypes in empty arrays. | Tom Lane | 2004-12-17 |
| | |||
* | array_map failed to insert correct result type in an empty array. | Tom Lane | 2004-12-17 |
| | | | | Per example from Florian Pflug. | ||
* | Avoid generating excess (and illegal) parentheses around an aliased JOIN | Tom Lane | 2004-12-13 |
| | | | | in prettyprint mode. Andreas Pflug | ||
* | Back-patch copyOject fix for EXPLAIN/PREPARE. | Tom Lane | 2004-12-13 |
| | |||
* | Translation update | Peter Eisentraut | 2004-12-11 |
| | |||
* | Translation update | Peter Eisentraut | 2004-12-11 |
| | |||
* | Use StrNCpy not strncpy to fill hash key, to ensure the resulting key | Tom Lane | 2004-12-03 |
| | | | | | | is null-terminated. I think this is not a real bug because the parser would always have truncated the identifier to NAMEDATALEN-1 already, but let's be safe. Per report from Klocwork. | ||
* | Translation fix by Julien Cristau | Peter Eisentraut | 2004-12-03 |
| | |||
* | Teach regex_fixed_prefix() the correct handling of advanced regex | Tom Lane | 2004-12-02 |
| | | | | | | escapes --- they aren't simply quoted characters. Problem noted by Antti Salmela. Also fix problem with incorrect handling of multibyte characters when followed by a quantifier. | ||
* | Fix timestamptz_age() to do calculation in local timezone not GMT, per bug 1332. | Tom Lane | 2004-12-01 |
| | |||
* | Avoid scribbling on original parsetree during DECLARE CURSOR. This | Tom Lane | 2004-11-28 |
| | | | | | | prevents problems when the DECLARE is in a portal and is executed repeatedly, as is possible in v3 protocol. Per analysis by Oliver Jowett, though I didn't use his patch exactly. | ||
* | Install Tcl regex fixes to sync our regex engine with Tcl 8.4.8 (up from | Tom Lane | 2004-11-24 |
| | | | | | 8.4.1). This corrects some curious regex bugs, though not the greediness issue I was hoping to find a solution for :-( | ||
* | Our interface code for Spencer's regexp package was checking for regexp | Tom Lane | 2004-11-24 |
| | | | | | | | error conditions during regexp compile, but not during regexp execution; any sort of "can't happen" errors would be treated as no-match instead of being reported as they should be. Noticed while trying to duplicate a reported Tcl bug. | ||
* | Back-patch fix for ALTER DATABASE failing to flush pg_database changes | Tom Lane | 2004-11-18 |
| | | | | | to disk right away. This is just a one-liner change rather than trying to use FlushRelationBuffers(). | ||
* | Fix off-by-one memory allocation, as reported by Rod Taylor. Also | Tom Lane | 2004-11-17 |
| | | | | avoid repalloc'ing twice when once is sufficient. | ||
* | Backpatch fix from HEAD: | Neil Conway | 2004-11-17 |
| | | | | | | | | | Prevent a backend crash when processing CREATE TABLE commands with more than 65K columns, or when the created table has more than 65K columns due to adding inherited columns from parent relations. Fix a similar crash when processing SELECT queries with more than 65K target list entries. In all three cases we would eventually detect the error and elog, but the check was being made too late. | ||
* | Translation update | Peter Eisentraut | 2004-11-16 |
| | |||
* | List VALUE as a keyword. | Michael Meskes | 2004-11-10 |
| | |||
* | In PGSharedMemoryIsInUse, assume that EACCES indicates a shmem segment | Tom Lane | 2004-11-09 |
| | | | | | | | | that is of no concern to us --- it must belong to a different userid, which means it is not a Postgres shmem segment (or at least, not one that is relevant to our data directory). I plan a more extensive fix in HEAD, but this is a simple change that prevents failure-to-reboot problems for single-postmaster installations. | ||
* | Fix unportable code in SockAddr_cidr_mask: you can't assume that | Tom Lane | 2004-11-08 |
| | | | | | shifting left by full word width gives zero. Per bug report from Tyson Thomson. | ||
* | fixed bug in REVOKE statement cat_str only has 8 arguments | Dave Cramer | 2004-11-01 |
| | |||
* | New translations | Peter Eisentraut | 2004-10-30 |
| | |||
* | Rearrange order of pre-commit operations: must close cursors before doing | Tom Lane | 2004-10-29 |
| | | | | ON COMMIT actions. Per bug report from Michael Guerin. | ||
* | Translation update | Peter Eisentraut | 2004-10-27 |
| | |||
* | Stamp release 7.4.6.REL7_4_6 | Tom Lane | 2004-10-22 |
| |