Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Backpatch FAQ to 8.0.X. | Bruce Momjian | 2005-02-02 | |
| | ||||
* | Backpatch FAQ to 8.0.X. | Bruce Momjian | 2005-02-02 | |
| | ||||
* | Fix a bug induced by the list-rewrite that resulted in incrementing the | Neil Conway | 2005-02-01 | |
| | | | | command counter more than necessary. Per report from Michael Fuhr. | |||
* | Adjust estimate_num_groups() to not clamp per-relation group count | Tom Lane | 2005-02-01 | |
| | | | | | | | estimate to less than the number of values estimated for any one grouping Var, as suggested by Manfred. This is intuitively right, and what's more it puts the plan choices in the subselect regression test back the way they were before ... | |||
* | Adjust plpgsql to allow assignment to an element of an array that is | Tom Lane | 2005-02-01 | |
| | | | | | | initially NULL. For 8.0 we changed the main executor to have this behavior in an UPDATE of an array column, but plpgsql's equivalent case was overlooked. Per report from Sven Willenberger. | |||
* | Backpatch FAQ changes to 8.0.X. | Bruce Momjian | 2005-02-01 | |
| | ||||
* | Sync inet formatting code with recent BIND releases. In particular, | Tom Lane | 2005-02-01 | |
| | | | | | fix bug with inconsistent selection of default mask length for "class D" addresses. Per report from Steve Atkins. | |||
* | Recommend security@postgresql.org as the contact point for security-related ↵REL8_0_1 | Tom Lane | 2005-01-30 | |
| | | | | bugs. | |||
* | Stamp 8.0 branch as 8.0.1. | Tom Lane | 2005-01-30 | |
| | ||||
* | Translation updates | Peter Eisentraut | 2005-01-30 | |
| | ||||
* | Backpatch FAQ to 8.0.X. | Bruce Momjian | 2005-01-30 | |
| | ||||
* | FAQ markup fixes. | Bruce Momjian | 2005-01-30 | |
| | ||||
* | Backpatch FAQ to 8.0.X. | Bruce Momjian | 2005-01-30 | |
| | ||||
* | Backpatch FAQ changes to 8.0.X. | Bruce Momjian | 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 | |||
* | Add documentation for format_type(), which somehow escaped it before. | Tom Lane | 2005-01-28 | |
| | ||||
* | Add intset() to README (backpatch teodor's docs fix in HEAD). | Tom Lane | 2005-01-28 | |
| | ||||
* | Add note cautioning that you can't use an encrypting IDENT server | Tom Lane | 2005-01-28 | |
| | | | | with Postgres. | |||
* | When dealing with multiple grouping columns coming from the same table, | Tom Lane | 2005-01-28 | |
| | | | | | | | | | clamp the estimated number of groups to table row count over 10, instead of table row count; this reflects a heuristic that people probably won't group over a near-unique set of columns, and the knowledge that we don't currently have any way to estimate the correlation of the columns better than guessing. This change creates a trivial plan change in one of the regression tests. | |||
* | Improve planner's estimation of the space needed for HashAgg plans: | Tom Lane | 2005-01-28 | |
| | | | | | | look at the actual aggregate transition datatypes and the actual overhead needed by nodeAgg.c, instead of using pessimistic round numbers. Per a discussion with Michael Tiemann. | |||
* | pg_aggregate.h fails to compile standalone, for lack of an #include | Tom Lane | 2005-01-28 | |
| | | | | defining List. | |||
* | Adjust mkdir_p to do stat() before trying mkdir(). Avoids problems on | Tom Lane | 2005-01-28 | |
| | | | | | Solaris and should be a little faster anyway, since in most scenarios all but perhaps the last path component will already exist. | |||
* | 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. | |||
* | Backpatch translations | Peter Eisentraut | 2005-01-27 | |
| | ||||
* | Close all cursors created during a failed subtransaction. This is needed | Tom Lane | 2005-01-26 | |
| | | | | | | to avoid problems when a cursor depends on objects created or changed in the same subtransaction. We'd like to do better someday, but this seems the only workable answer for 8.0.1. | |||
* | Propagate ecpg core dump fix into 8.0 branch. | Tom Lane | 2005-01-26 | |
| | ||||
* | Adjust Windows autovacuum service to retry for up to 5 minutes waiting | Tom Lane | 2005-01-26 | |
| | | | | for the postmaster to start. Dave Page | |||
* | On Windows, set the postmaster executable's stack size to 4MB, so that | Tom Lane | 2005-01-26 | |
| | | | | it agrees with the default value of max_stack_depth. | |||
* | Minor tweak to avoid unnecessary memory bloat when dumping extremely wide | Tom Lane | 2005-01-26 | |
| | | | | | | column values in -d mode. Per report from Marty Scholes. This doesn't completely solve the issue, because we still need multiple copies of the field value, but at least one copy can be got rid of painlessly ... | |||
* | Add docs for a couple of formerly-undocumented geometric conversion functions. | Tom Lane | 2005-01-26 | |
| | ||||
* | Make pg_dump and pg_restore handle binary archive formats correctly | Tom Lane | 2005-01-26 | |
| | | | | when using stdout/stdin on Windows. | |||
* | Use SHGetFolderPath instead of SHGetSpecialFolderPath to find the | Tom Lane | 2005-01-26 | |
| | | | | APPDATA directory on Windows. Magnus Hagander | |||
* | 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. | |||
* | Fix breakage created by addition of separate 'acl pass' in pg_dump. | Tom Lane | 2005-01-25 | |
| | | | | Also clean up incredibly poor style in TocIDRequired() usage. | |||
* | Add missing "ko". | Peter Eisentraut | 2005-01-25 | |
| | ||||
* | Translation update | Peter Eisentraut | 2005-01-25 | |
| | ||||
* | Fix ALTER TABLE ADD COLUMN so that constraints of domain types are | Tom Lane | 2005-01-24 | |
| | | | | | enforced properly when there is no explicit default value for the new column. Per report from Craig Perras. | |||
* | 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 | |
| | ||||
* | pg_autovacuum fixes from Dave Page: | Neil Conway | 2005-01-24 | |
| | | | | | | | | | | | - Dependency services may not be correctly registered when installing as a Windows Service. - The sleep time is changed from milliseconds to seconds as it should be. - Error messages during service installation/removal are logged to stderr. | |||
* | 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. | |||
* | Add tools/find_gt_lt to find < and > in SGML source. | Bruce Momjian | 2005-01-23 | |
| | | | | | Lowercase some uppercase tags so tools is more reliable at finding problems. | |||
* | pg_dump dumped the wrong tablespace for an index (ie, the parent table's | Tom Lane | 2005-01-23 | |
| | | | | | tablespace instead of the index's own), except when the index was created as a constraint. Report and fix by Tanida Yutaka. | |||
* | New routine _getObjectDescription() failed to cope with some aspects of | Tom Lane | 2005-01-23 | |
| | | | | | | pre-7.3 pg_dump archive files: namespace isn't there, and in some cases te->tag may already be quotified. Per report from Alan Pevec and followup testing. | |||
* | More < and > changes to ampersands. | Bruce Momjian | 2005-01-22 | |
| | | | | 8.0.X and HEAD. | |||
* | More < and > cleanups converted to ampersands. | Bruce Momjian | 2005-01-22 | |
| | ||||
* | Update version restriction on xml2. | Bruce Momjian | 2005-01-22 | |
| |