aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Add space after description.Bruce Momjian2005-10-16
| | | | Euler Taveira de Oliveira
* kerberos error message: localhost -> server hostnameBruce Momjian2005-10-15
|
* Suppress warnings on platforms where fprintf is a macro (eg, recentTom Lane2005-10-15
| | | | | Fedora). This was already done by somebody for the core flex files, but these contrib files seem to have been missed.
* Fix bogus error test in get_ti_Oid().Tom Lane2005-10-15
|
* Fix unportable struct initializations.Tom Lane2005-10-15
|
* Remove a long comment from cvs.sgml -- AFAICS this is no longer useful,Neil Conway2005-10-15
| | | | or at any rate doesn't belong as a comment in a random SGML file.
* Fix assorted typos in the documentation, and use American spellingNeil Conway2005-10-15
| | | | rather than British. Patch from Michael Fuhr.
* Fix thinko in pg_read_file: testing for negative result is not the wayTom Lane2005-10-15
| | | | to determine whether fread() failed.
* Update 'supported platforms' list with current buildfarm results.Tom Lane2005-10-15
|
* Fix kerberos description: localhost -> server hostname.Bruce Momjian2005-10-15
|
* Standard pgindent run for 8.1.Bruce Momjian2005-10-15
|
* Update pgindent typedef list.Bruce Momjian2005-10-15
|
* Merge some user-submitted suggestions for improvement into theNeil Conway2005-10-15
| | | | | documentation. Mostly add some <xref>s, fix a few typos, and document that zlib is required in the installation docs.
* Fix typo.Alvaro Herrera2005-10-15
|
* Fix syslog bug: if any messages are emitted to write_syslog beforeTom Lane2005-10-14
| | | | | | | | | the facility has been set, the facility gets set to LOCAL0 and cannot be changed later. This seems reasonably plausible to happen, particularly at higher debug log levels, though I am not certain it explains Han Holl's recent report. Easiest fix is to teach the code how to change the value on-the-fly, which is nicer anyway. I made the settings PGC_SIGHUP to conform with log_destination.
* fix nonsensical summary row on exampleAndrew Dunstan2005-10-14
|
* Pass a strdup'd ident string to openlog(), to ensure that reallocationTom Lane2005-10-14
| | | | | of GUC memory doesn't cause us to start emitting a bogus ident string. Per report from Han Holl. Also some trivial code cleanup in write_syslog.
* Allow times of 24:00:00 to match rounding behavior:Bruce Momjian2005-10-14
| | | | | | | | | | | | | | | regression=# select '23:59:59.9'::time(0); time ---------- 24:00:00 (1 row) This is bad because: regression=# select '24:00:00'::time(0); ERROR: date/time field value out of range: "24:00:00" The last example now works.
* Add documentation mentioning that there are separate regression testsTom Lane2005-10-13
| | | | for the PL languages and for contrib.
* Improve documentation about CREATEROLE privilege.Tom Lane2005-10-13
|
* Fix uppercase TRUE/FALSE that are WIN32 stuffl.Bruce Momjian2005-10-13
|
* Update regression output for new prepare transaction error messages.Bruce Momjian2005-10-13
|
* Make stack_base_ptr non-static, for PL/Java.Bruce Momjian2005-10-13
|
* This makes the error messages for PREPARE TRANSACTION, COMMIT PREPAREDBruce Momjian2005-10-13
| | | | | | | etc. match the docs, which talk about "transaction identifier" not "gid" or "global transaction identifier". Steve Woodcock
* Update krb_server_name to document that a missing entry defaults toBruce Momjian2005-10-13
| | | | | | 'localhost'. Improve kerberos error message.
* Update documentation to reflect the new ALTER OWNER rules for allTom Lane2005-10-13
| | | | affected types of objects.
* Describe the behavior of the SQL_ASCII encoding more accurately.Tom Lane2005-10-13
|
* Adjust the discussion of triggers to more clearly guide people in theTom Lane2005-10-13
| | | | | direction of writing triggers in a procedural language, rather than C. Per discussion.
* The patch updates the documentation to reflect the fact that higher valuesBruce Momjian2005-10-13
| | | | | | | | | | | | | | | | | | | | of client_min_messages (fatal + panic) are valid and also fixes a slight issue with how psql tried to display error messages that aren't sent to the client. We often tell people to ignore errors in response to requests for things like "drop if exists", but there's no good way to completely hide this without upping client_min_messages past ERROR. When running a file like SET client_min_messages TO 'FATAL'; DROP TABLE doesntexist; with "psql -f filename" you get an error prefix of "psql:/home/username/filename:3" even though there is no error message to prefix because it isn't sent to the client. Kris Jurka
* Enable threaded python builds on freebsd5, per report from Jim C. NasbyBruce Momjian2005-10-13
|
* Turn off list of tables, figures, and examples.Peter Eisentraut2005-10-13
|
* Go back to emitting path names with forward slashes on Windows.Tom Lane2005-10-13
| | | | | I'm not clear on what the double-backslash idea was intended to fix, but it breaks at least mingw GNU Make. Per report from Thomas Hallgren.
* Back out this because of fear of changing error strings:Bruce Momjian2005-10-13
| | | | | | | | This makes the error messages for PREPARE TRANSACTION, COMMIT PREPARED etc. match the docs, which talk about "transaction identifier" not "gid" or "global transaction identifier". Steve Woodcock
* This makes the error messages for PREPARE TRANSACTION, COMMIT PREPAREDBruce Momjian2005-10-13
| | | | | | | etc. match the docs, which talk about "transaction identifier" not "gid" or "global transaction identifier". Steve Woodcock
* Rewording, use the more common multi-threaded/single-threaded.Bruce Momjian2005-10-13
|
* Clarify causes of possible mismatch between Win32 libraries andBruce Momjian2005-10-13
| | | | applications that use FILE pointers.
* Some additional doc changes based around compression of page images inBruce Momjian2005-10-13
| | | | | | | | | | | | | | | | | WAL and the interaction of the new full_page_writes parameter with PITR. The too-small WAL first sect1 has been merged with the one following sect1 for clarity. Some minor comments have been made in the WAL config section also. Passes SGML make and proofread for typos. Files changed: patching file doc/src/sgml/backup.sgml patching file doc/src/sgml/config.sgml patching file doc/src/sgml/wal.sgml Simon Riggs
* Mark xslt_process() as volatile.Bruce Momjian2005-10-13
|
* Use get_progname() in backend main.c, rather than port-specific hackBruce Momjian2005-10-13
| | | | that is too fragile.
* Fix small oversight in recent patch to add more CREATE-FUNCTION-timeTom Lane2005-10-13
| | | | | | syntax checking to plpgsql: check_sql_expr() wasn't being called by make_select_stmt(), so that there was no SQL syntax check for SELECT statements.
* Change xpath_table() and xslt_process() from IMMUTABLE to STABLE.Bruce Momjian2005-10-13
|
* Fix capitalization of example.Bruce Momjian2005-10-13
|
* Remove an antiquated comment.Neil Conway2005-10-13
|
* Add a comment describing the requirement that pointers into shared memoryNeil Conway2005-10-13
| | | | that is protected by a spinlock must be volatile, per recent discussion.
* Update trigger demo to reflect new trigger ordering.Bruce Momjian2005-10-13
|
* Remove extra <para>Bruce Momjian2005-10-13
|
* Update:Bruce Momjian2005-10-13
| | | | | | | | > * Prevent PQfnumber() from lowercasing unquoted the column name > > PQfnumber() should never have been doing lowercasing, but historically > it has so we need a way to prevent it >
* Don't try to remove duplicate OR-subclauses in create_bitmap_subplan andTom Lane2005-10-13
| | | | | | | make_restrictinfo_from_bitmapqual. The likelihood of finding duplicates seems much less than in the AND-subclause case, and the cost much higher, because OR lists with hundreds or even thousands of subclauses are not uncommon. Per discussion with Ilia Kantor and andrew@supernews.
* Fix spelling error, per Michael Fuhr.Tom Lane2005-10-12
|
* Remove item:Bruce Momjian2005-10-12
| | | | | | | | < * Prevent libpq's PQfnumber() from lowercasing the column name < < One idea is to lowercase all identifiers except those that are < surrounded by quotes. <