- 06 Aug, 2004 10 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
o "_" is not escaped, and causes TeX to abort, thinking it's a subscript outside of maths mode. Most of my table and field names use underscores, so this is a really nasty one. o The column count is calculated using the contents of opt_align. But opt_align has one extra element, and so it's always one too many. I changed it to count the column headings, like all the other output formats. There may be a bug in computing opt_align that this patch does not address, but I'm not yet familiar enough with the psql source to fix this as well. o The line drawing rules for each border setting (0-3) and expanded mode didn't always match the documented behaviour and what other formats (e.g. aligned) did. I made it as conformant as possible, and also tidied the alignment of the first line of the footer, which was incorrectly indented. Roger Leigh
-
Tom Lane authored
This avoids changing the displayed appearance of ACL columns now that array_out decorates its output with bounds information when the lower bound isn't one. Per gripe from Gaetano Mendola. Note that I did not force initdb for this, although any database initdb'd in the last couple of days is going to have some problems.
-
Bruce Momjian authored
> * Un-comment all variables in postgresql.conf 84,85c84,85 < By removing comments we prevent the confusion that commenting a line < returns a modified value to its default, which it does not. > By not showing commented-out variables, we discourage people from > thinking that re-commenting a variable returns it to its default.
-
Tom Lane authored
stderr is in text mode. Per Andreas.
-
Tom Lane authored
-
Bruce Momjian authored
> * Track dependencies in function bodies and recompile/invalidate
-
Bruce Momjian authored
> > By removing comments we prevent the confusion that commenting a line > returns a modified value to its default, which it does not. >
-
Bruce Momjian authored
> * Remove comments on postgresql.conf variables
-
Bruce Momjian authored
-
- 05 Aug, 2004 6 commits
-
-
Tom Lane authored
recommend that people go get Apache's rotatelogs program. Additional benefits are that configuration is done through GUC, rather than externally, and that the postmaster can monitor the log rotator and restart it after failure (though we certainly hope that won't happen often). Andreas Pflug, some rework by Tom Lane.
-
Dennis Bjorklund authored
-
Dennis Bjorklund authored
-
Joe Conway authored
subarrays of a given dimension have the same number of elements/subarrays. Also repair a longstanding undocumented (as far as I can see) ability to explicitly set array bounds in the array literal syntax. It now can deal properly with negative array indicies. Modify array_out so that arrays with non-standard lower bounds (i.e. not 1) are output with the expicit dimension syntax. This fixes a longstanding issue whereby arrays with non-default lower bounds had them changed to default after a dump/reload cycle. Modify regression tests and docs to suit, and add some minimal documentation regarding the explicit dimension syntax.
-
Joe Conway authored
-
Joe Conway authored
-
- 04 Aug, 2004 15 commits
-
-
Bruce Momjian authored
-
Dennis Bjorklund authored
real gettext() later on, so it was called twice before.
-
Tom Lane authored
and documentation to reference 8.0 instead of 7.5.
-
Tom Lane authored
-
Tom Lane authored
dependency was looking at wrong columns and so would always fail. Was not exposed by regression tests because we are only testing cases involving built-in (pinned) types and so no actual dependency entry exists to be removed.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
datatype. Per example from Gaetano Mendola, 2004-07-25.
-
Tom Lane authored
-
Tom Lane authored
Instead of putting all the OWNER TO commands at the end, it dumps then after each object. This is WAY more readable and nice. ACLs are still at the end. Christopher Kings-Lynne
-
Dennis Bjorklund authored
-
Tom Lane authored
-
Tom Lane authored
-
Dennis Bjorklund authored
that makes it impossible to translate to other languages.
-
Bruce Momjian authored
-
- 03 Aug, 2004 5 commits
-
-
Tom Lane authored
-
Tom Lane authored
and history files as per recent discussion. While at it, remove pg_terminate_backend, since we have decided we do not have time during this release cycle to address the reliability concerns it creates. Split the 'Miscellaneous Functions' documentation section into 'System Information Functions' and 'System Administration Functions', which hopefully will draw the eyes of those looking for such things.
-
Tom Lane authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
- 02 Aug, 2004 4 commits
-
-
Tom Lane authored
mode (per complaint from Kris Jurka) and it was only by chance that it didn't fail in simple-query mode. A COMMIT or ROLLBACK has to be executed by a portal, therefore it's wrong to suppose that there aren't any live portals at CleanupTransaction time.
-
Tom Lane authored
names, because the name we got from the lexer is already downcased. Just store the table in lower case and use strcmp ...
-
Tom Lane authored
error code for string-too-long errors. It should be STRING_DATA_RIGHT_TRUNCATION not STRING_DATA_LENGTH_MISMATCH. The latter probably should only be applied to cases where a string must be exactly so many bits --- there are no cases at all where it applies to character strings, only bit strings.
-
Peter Eisentraut authored
-