Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update find_typedefs to handle simple 'typedef X' cases, per request | Bruce Momjian | 2007-12-21 |
| | | | | from Tom. | ||
* | Fixed a few minor glitches pointed out by splint. | Michael Meskes | 2007-12-21 |
| | |||
* | Modify pgindent to use an external typedefs file rather than included | Bruce Momjian | 2007-12-21 |
| | | | | | | list. Remove pgjindent. | ||
* | libpq needs pgsleep on win32 because of the changes to port/open.c. | Magnus Hagander | 2007-12-21 |
| | |||
* | Fix a small typo, per Jan Urbanski | Tom Lane | 2007-12-21 |
| | |||
* | On win32, loop when opening files if sharing- och lock-violation errors | Magnus Hagander | 2007-12-20 |
| | | | | | occur. Hopefully, this will make it possible to recover from broken antivirus and/or backup software that locks our files. | ||
* | When given a nonzero column number, pg_get_indexdef() is only supposed to | Tom Lane | 2007-12-20 |
| | | | | | | | | | print the index key variable or expression for that column. It was mistakenly printing ASC/DESC/NULLS FIRST/NULLS LAST decoration too --- and not only for the target column, but all columns. Someday we should have an option to extract that info (and the opclass decoration as well) for a single index column ... but today is not that day. Per bug #3829 and subsequent discussion. | ||
* | Remove unnecessary logo output from msbuild when cleaning ecpg regression | Magnus Hagander | 2007-12-19 |
| | | | | test outputs. | ||
* | Make all msvc build scripts use buildenv.pl, not buildenv.bat. | Magnus Hagander | 2007-12-19 |
| | | | | Andrew Dunstan | ||
* | Fix thinko in encoding check for chr() | Andrew Dunstan | 2007-12-18 |
| | |||
* | Make archiver process report its progress in PS display. Per | Tom Lane | 2007-12-18 |
| | | | | proposal by Simon Riggs, though not exactly his patch. | ||
* | Make path_recv() and poly_recv() reject paths/polygons containing no points. | Tom Lane | 2007-12-18 |
| | | | | | | | | The zero-point case is sensible so far as the data structure is concerned, so maybe we ought to allow it sometime; but right now the textual input routines for these types don't allow it, and it seems that not all the functions for the types are prepared to cope. Report and patch by Merlin Moncure. | ||
* | Update pg_ctk/kill docs. | Bruce Momjian | 2007-12-17 |
| | |||
* | Remove tab in SGML file. | Bruce Momjian | 2007-12-17 |
| | |||
* | Improve wording. | Alvaro Herrera | 2007-12-17 |
| | |||
* | Update archive_command example to use || test, rather than if []. | Bruce Momjian | 2007-12-17 |
| | |||
* | Some desultory copy-editing on the backup/restore docs. | Tom Lane | 2007-12-17 |
| | |||
* | Mention use all configure options when getting pgindent typedefs. | Bruce Momjian | 2007-12-17 |
| | |||
* | Mention installing /contrib libraries for pgindent. | Bruce Momjian | 2007-12-17 |
| | |||
* | Update item description: | Bruce Momjian | 2007-12-17 |
| | | | | | | | | * Consider having the background writer update the transaction status hint bits before writing out the page Implementing this requires the background writer to have access to system catalogs and the transaction status log. | ||
* | Make an editorial pass over the newly SGML-ified contrib documentation. | Tom Lane | 2007-12-16 |
| | | | | | | Fix lots of bad markup, bad English, bad explanations. Last ones ... whew. Man, that was tedious. | ||
* | Windows write-cache wording improvement. | Bruce Momjian | 2007-12-16 |
| | |||
* | Update write-cache docs to mention windows behavior for various | Bruce Momjian | 2007-12-16 |
| | | | | | | fsync_methods. Magnus. | ||
* | Mention that HOT helps with DELETE space reuse. | Bruce Momjian | 2007-12-16 |
| | |||
* | Update OOM wording. | Bruce Momjian | 2007-12-16 |
| | |||
* | Add docs about OOM killer. | Bruce Momjian | 2007-12-16 |
| | | | | lst_hoe01@kwsoft.de | ||
* | Mention pg_ctl kill for Win32 in docs. | Bruce Momjian | 2007-12-16 |
| | |||
* | Update pgpool-II mention. | Bruce Momjian | 2007-12-16 |
| | |||
* | Mark 8.3 as likely now January, 2008 in release notes. | Bruce Momjian | 2007-12-16 |
| | |||
* | Get dllwrap name from variable instead of hardcoded. | Magnus Hagander | 2007-12-15 |
| | | | | Per complaint from Richard Evans | ||
* | Fix example archive_command for standalone backups so it doesn't return ↵ | Andrew Dunstan | 2007-12-15 |
| | | | | spurious non-zero. | ||
* | Use clearer error message for gmake postgres.pdf: | Bruce Momjian | 2007-12-15 |
| | | | | Makefile:171: *** Invalid target; use postgres-A4.pdf or postgres-US.pdf as targets. Stop. | ||
* | Improve documentation about Julian dates; in particular, point out the | Tom Lane | 2007-12-15 |
| | | | | difference between Julian and Gregorian reckoning of when JD 0 was. | ||
* | Make error message more accurate | Peter Eisentraut | 2007-12-14 |
| | |||
* | Add default error rules for making postgres.pdf and postgres.ps, | Bruce Momjian | 2007-12-14 |
| | | | | suggesting proper target names. | ||
* | Correct result type of convert_to, per Pavel Stehule. | Alvaro Herrera | 2007-12-13 |
| | |||
* | Clarify log messages | Peter Eisentraut | 2007-12-13 |
| | |||
* | Change a couple of examples to say ALTER MAPPING instead of ADD MAPPING, | Tom Lane | 2007-12-13 |
| | | | | per Oleg. | ||
* | Mark items needing updating for beta stamping. | Bruce Momjian | 2007-12-13 |
| | |||
* | Improve the method of localizing column names and other fixed strings in | Tom Lane | 2007-12-12 |
| | | | | | | | | | | | | | | | psql's \d commands and other uses of printQuery(). Previously we would pass these strings through gettext() and then send them to the server as literals in the SQL query. But the code was not set up to handle doubling of quotes in the strings, causing failure if a translation attempted to use the wrong kind of quote marks, as indeed is now the case for (at least) the French translation of \dFp. Another hazard was that gettext() would translate to whatever encoding was implied by the client's LC_CTYPE setting, which might be different from the client_encoding setting, which would probably cause the server to reject the query as mis-encoded. The new arrangement is to send the untranslated ASCII strings to the server, and do the translations inside printQuery() after the query results come back. Per report from Guillaume Lelarge and subsequent discussion. | ||
* | Clean up unportable attempt to use #if inside a macro call, also | Tom Lane | 2007-12-12 |
| | | | | faulty code in third arm of #if. Per buildfarm reports. | ||
* | Provide a more accurate, detailed log message when the archive command fails. | Peter Eisentraut | 2007-12-12 |
| | |||
* | Add random I/O URL: | Bruce Momjian | 2007-12-12 |
| | | | | > http://archives.postgresql.org/pgsql-hackers/2007-12/msg00027.php | ||
* | This item was fixed in a different way, so has been removed: | Bruce Momjian | 2007-12-12 |
| | | | | | | | | | | | < < * Allow free-behind capability for large sequential scans to avoid < kernel cache spoiling < < Posix_fadvise() can control both sequential/random file caching and < free-behind behavior, but it is unclear how the setting affects other < backends that also have the file open, and the feature is not supported < on all operating systems. | ||
* | Adjust release notes for HISTORY.html generation. | Bruce Momjian | 2007-12-12 |
| | |||
* | Change 'merge sort join', a phrase we use nowhere else, to the more | Tom Lane | 2007-12-12 |
| | | | | usual 'merge join'. | ||
* | Make CSV column ordering a bit more logical. | Alvaro Herrera | 2007-12-11 |
| | |||
* | Make documentation of -W options more accurate and uniform. | Tom Lane | 2007-12-11 |
| | |||
* | Remove the long-deprecated -u option from psql, since it does nothing very | Tom Lane | 2007-12-11 |
| | | | | | | | | useful and confuses people who think it is the same as -U. (Eventually we might want to re-introduce it as being an alias for -U, but that should not happen until the switch has actually not been there for a few releases.) Likewise in pg_dump and pg_restore. Per gripe from Robert Treat and subsequent discussion. | ||
* | Typo pointed out by Erwin Brandstetter. Remove the whole makes it even | Magnus Hagander | 2007-12-11 |
| | | | | better, per JD. |