| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2005-01-31 | Remove "Support" FAQ item. We now have a tab on our web site. | Bruce Momjian | |
| 2005-01-31 | Wording improvement. | Bruce Momjian | |
| 2005-01-31 | Reorder support FAQ items. | Bruce Momjian | |
| 2005-01-31 | Update section to mention developer's FAQ. | Bruce Momjian | |
| 2005-01-31 | Mention releases are every 10-12 months now. | Bruce Momjian | |
| 2005-01-31 | Simplify FAQ item about obtaining support. | Bruce Momjian | |
| 2005-01-31 | Clarify license FAQ item. | Bruce Momjian | |
| 2005-01-31 | Modernize the FAQ item "What is PostgreSQL" to skip most historical | Bruce Momjian | |
| information. | |||
| 2005-01-30 | Recommend security@postgresql.org as the contact point for security-related ↵ | Tom Lane | |
| bugs. | |||
| 2005-01-30 | Update FAQ text file. | Bruce Momjian | |
| 2005-01-30 | FAQ markup fixes. | Bruce Momjian | |
| 2005-01-30 | Fix ampersand in URL. | Bruce Momjian | |
| 2005-01-30 | Remove IN/slow FAQ item because it only applies to <=7.3.X. | Bruce Momjian | |
| 2005-01-30 | Remove GEQO and Rtree FAQ items. | Bruce Momjian | |
| 2005-01-30 | More index item rewording.kUpdate FAQ. | Bruce Momjian | |
| 2005-01-30 | Reword index/slow query item. | Bruce Momjian | |
| 2005-01-30 | Remove FAQ item about binary cursors. | Bruce Momjian | |
| 2005-01-30 | Remove FAQ items about IPC errors. We now report the help description | Bruce Momjian | |
| right in the failure. We can always re-add it if required. | |||
| 2005-01-30 | Merge two Interfaces FAQ items into one. | Bruce Momjian | |
| 2005-01-30 | Merge unix and non-unix platform faq items, and remove Y2K item. | Bruce Momjian | |
| 2005-01-30 | Update OID item description. | Bruce Momjian | |
| 2005-01-30 | Preliminary release notes for 8.0.1, 7.4.7, 7.3.9, 7.2.7. | Tom Lane | |
| 2005-01-29 | We haven't had a fixed limit on rule recursion depth since 7.3 ... | Tom Lane | |
| but the documentation still said so. | |||
| 2005-01-29 | Make sure contrib C functions are marked strict where needed. | Tom Lane | |
| Kris Jurka | |||
| 2005-01-28 | Add documentation for format_type(), which somehow escaped it before. | Tom Lane | |
| 2005-01-28 | Add note cautioning that you can't use an encrypting IDENT server | Tom Lane | |
| with Postgres. | |||
| 2005-01-28 | When dealing with multiple grouping columns coming from the same table, | Tom Lane | |
| 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. | |||
| 2005-01-28 | Improve planner's estimation of the space needed for HashAgg plans: | Tom Lane | |
| 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. | |||
| 2005-01-28 | pg_aggregate.h fails to compile standalone, for lack of an #include | Tom Lane | |
| defining List. | |||
| 2005-01-28 | Adjust mkdir_p to do stat() before trying mkdir(). Avoids problems on | Tom Lane | |
| Solaris and should be a little faster anyway, since in most scenarios all but perhaps the last path component will already exist. | |||
| 2005-01-27 | Check that aggregate creator has the right to execute the transition | Tom Lane | |
| functions of the aggregate, at both aggregate creation and execution times. | |||
| 2005-01-27 | Small patch to move get_grosysid() from catalog/aclchk.c to | Neil Conway | |
| utils/cache/lsyscache.c where it can be used by other things. Also cleans up both get_usesysid() and get_grosysid() a bit. From Stephen Frost. | |||
| 2005-01-27 | Change heap_modifytuple() to require a TupleDesc rather than a | Neil Conway | |
| Relation. Patch from Alvaro Herrera, minor editorializing by Neil Conway. | |||
| 2005-01-27 | 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 | |
| stand to be rewritten altogether, but for now just stick a finger in the dike. | |||
| 2005-01-27 | Add intset() to README | Teodor Sigaev | |
| 2005-01-27 | Provide a more descriptive error message when the return type of an SRF | Neil Conway | |
| does not match what the query expected. From Brendan Jurd, minor editorializing by Neil Conway. | |||
| 2005-01-27 | Generalize TRUNCATE to support truncating multiple tables in one | Tom Lane | |
| command. This is useful because we can allow truncation of tables referenced by foreign keys, so long as the referencing table is truncated in the same command. Alvaro Herrera | |||
| 2005-01-27 | Add regression tests for recent cursor/savepoint bug fixed by Alvaro and | Neil Conway | |
| Tom. | |||
| 2005-01-26 | Close all cursors created during a failed subtransaction. This is needed | Tom Lane | |
| 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. | |||
| 2005-01-26 | Adjust Windows autovacuum service to retry for up to 5 minutes waiting | Tom Lane | |
| for the postmaster to start. Dave Page | |||
| 2005-01-26 | On Windows, set the postmaster executable's stack size to 4MB, so that | Tom Lane | |
| it agrees with the default value of max_stack_depth. | |||
| 2005-01-26 | Minor tweak to avoid unnecessary memory bloat when dumping extremely wide | Tom Lane | |
| 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 ... | |||
| 2005-01-26 | 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 | |
| when using stdout/stdin on Windows. | |||
| 2005-01-26 | Use SHGetFolderPath instead of SHGetSpecialFolderPath to find the | Tom Lane | |
| APPDATA directory on Windows. Magnus Hagander | |||
| 2005-01-26 | Avoid unnecessary dependence on u_int16_t, per buildfarm failure. | Tom Lane | |
| (It doesn't compile on HPUX either...) | |||
| 2005-01-26 | The attached patch implements the soundex difference function which | Neil Conway | |
| compares two strings' soundex values for similarity, from Kris Jurka. Also mark the text_soundex() function as STRICT, to avoid crashing on NULL input. | |||
| 2005-01-25 | Fix breakage created by addition of separate 'acl pass' in pg_dump. | Tom Lane | |
| Also clean up incredibly poor style in TocIDRequired() usage. | |||
| 2005-01-25 | Add missing "ko". | Peter Eisentraut | |
