Better test the content of the SQLSTATE string in ecpglib than the pointer. |
|
More...
|
over 15 years ago
|
Require hostname to be set when using GSSAPI authentication. Without it, the GSSAPI libraries crash. |
|
More...
|
over 15 years ago
|
Disallow gssapi authentication on local connections, since it requires a hostname to function. |
|
More...
|
over 15 years ago
|
Update time zone data files to tzdata release 2010c: DST law changes in Bangladesh, Mexico, Paraguay. |
|
More...
|
over 15 years ago
|
Revert patch for --psqlrc=FILENAME in psql. |
|
More...
|
over 15 years ago
|
Fix warning messages in restrict_and_check_grant() to include the column name when warning about column-level privileges. This is more useful than before and makes the apparent duplication complained of by Piyush Newe not so duplicate. Also fix lack of quote marks in a related message text. |
|
More...
|
over 15 years ago
|
Add --psqlrc=FILENAME parameter to psql, to process an explicitly named file instead of ~/.psqlrc on startup. |
|
More...
|
over 15 years ago
|
When reading pg_hba.conf and similar files, do not treat @file as an inclusion unless (1) the @ isn't quoted and (2) the filename isn't empty. This guards against unexpectedly treating usernames or other strings in "flat files" as inclusion requests, as seen in a recent trouble report from Ed L. The empty-filename case would be guaranteed to misbehave anyway, because our subsequent path-munging behavior results in trying to read the directory containing the current input file. |
|
More...
|
over 15 years ago
|
In case the connection magically disappears libecpg only returns an internal error sqlstate. This change makes it return a correct value.. |
|
More...
|
over 15 years ago
|
Fix IsBinaryCoercible to not confuse a cast using in/out functions with binary compatibility. |
|
More...
|
over 15 years ago
|
Add C comment about DDL changes possibly causing pg_dump errors. |
|
More...
|
over 15 years ago
|
Document that "Q" is ignored by to_date and to_timestamp. Add C comment about the behavior. |
|
More...
|
over 15 years ago
|
Fix a couple of places that would loop forever if attempts to read a stdio file set ferror() but never set feof(). This is known to be the case for recent glibc when trying to read a directory as a file, and might be true for other platforms/cases too. Per report from Ed L. (There is more that we ought to do about his report, but this is one easily identifiable issue.) |
|
More...
|
over 15 years ago
|
Fix pg_dump of ACLs of foreign servers. The command to grant/revoke privileges of foreign servers is "GRANT ... ON *FOREIGN* SERVER ...". |
|
More...
|
over 15 years ago
|
Make contrib/xml2 use core xml.c's error handler, when available (that is, in versions >= 8.3). The core code is more robust and efficient than what was there before, and this also reduces risks involved in swapping different libxml error handler settings. |
|
More...
|
over 15 years ago
|
Export xml.c's libxml-error-handling support so that contrib/xml2 can use it too, instead of duplicating the functionality (badly). |
|
More...
|
over 15 years ago
|
Make iconv work like other optional libraries for MSVC. |
|
More...
|
over 15 years ago
|
Fix SGML markup. |
|
More...
|
over 15 years ago
|
Restructure CREATE FUNCTION "NOTES" section to be shorter; move items into proper sections, per suggestion from Tom. |
|
More...
|
over 15 years ago
|
Instead of trying (and failing) to allow <<label>> at the end of a DECLARE section, throw an error message saying explicitly that the label must go before DECLARE. Per investigation of a recent pgsql-novice question, this code did not work as intended in any modern PG version, maybe not ever. Allowing such a thing would only create ambiguity anyway, so it seems better to remove it than fix it. |
|
More...
|
over 15 years ago
|
Adjust max_standby_delay documentation to be clearer, and mention that two adjacent long-running queries have much less than max_standby_delay before query cancel is possible. |
|
More...
|
over 15 years ago
|
Add missing library and include dir for XSLT in MSVC builds |
|
More...
|
over 15 years ago
|
Document the effect of max_standby_delay on increasing the delay of data from master to slave, and discourage its use during slave/master keep-xid-alive connections. |
|
More...
|
over 15 years ago
|
Update keywords list for 9.0 |
|
More...
|
over 15 years ago
|
Do not run regression tests for contrib/xml2 on MSVC unless building with XML |
|
More...
|
over 15 years ago
|
Cause plpgsql to throw an error if "INTO rowtype_var" is followed by a comma. Per bug #5352, this helps to provide a useful error message if the user tries to do something presently unsupported, namely use a rowtype variable as a member of a multiple-item INTO list. |
|
More...
|
over 15 years ago
|
Add XSLT defines for MSVC builds |
|
More...
|
over 15 years ago
|
Fix translation of strings in psql \d output (translation in headers worked, but not in cells). |
|
More...
|
over 15 years ago
|
Fix numericlocale psql option when used with a null string and latex and troff formats; a null string must not be formatted as a numeric. The more exotic formats latex and troff also incorrectly formatted all strings as numerics when numericlocale was on. |
|
More...
|
over 15 years ago
|
Fix contrib/xml2 so regression test still works when it's built without libxslt. |
|
More...
|
over 15 years ago
|