Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Translation updates | Peter Eisentraut | 2003-10-11 | |
| | ||||
* | This patch will stop gcc from issuing warnings about type-punned objects | Bruce Momjian | 2003-10-11 | |
| | | | | | | | when -fstrict-aliasing is turned on, as it is in the latest gcc when you use -O2 Andrew Dunstan | |||
* | Translation updates | Peter Eisentraut | 2003-10-10 | |
| | ||||
* | Rename __arm__/__arm__ to __arm__/__arm, found by Neil Conway | Bruce Momjian | 2003-10-10 | |
| | ||||
* | Add NULL regression tests. | Bruce Momjian | 2003-10-10 | |
| | | | | Manfred Koizar | |||
* | Change Win32 rename/unlink timeout to 3 seconds. | Bruce Momjian | 2003-10-10 | |
| | ||||
* | Allow pg_id to compile on Win32. | Bruce Momjian | 2003-10-10 | |
| | | | | Andrew Dunstan | |||
* | Remove -pipe from compiles. | Bruce Momjian | 2003-10-09 | |
| | ||||
* | Make sure that -- comments extend to the end of the line. This fixes the | Peter Eisentraut | 2003-10-09 | |
| | | | | | | | | misscanning of this construct: SELECT ''hello world'' -- SELECT ''goodbye world'' ::text; | |||
* | Some updates | Peter Eisentraut | 2003-10-09 | |
| | ||||
* | Update Solaris FAQ to mention -fast. | Bruce Momjian | 2003-10-09 | |
| | ||||
* | Remove -pipe on Linux, per reports from Peter. | Bruce Momjian | 2003-10-09 | |
| | ||||
* | Add -pipe compile for Linux. | Bruce Momjian | 2003-10-09 | |
| | ||||
* | Make template CFLAGS handling consistent. | Bruce Momjian | 2003-10-09 | |
| | ||||
* | Re-add -pipe compile flags for bsd's. | Bruce Momjian | 2003-10-09 | |
| | ||||
* | This centralizes the optimization defaults into configure.in, rather | Bruce Momjian | 2003-10-09 | |
| | | | | | | | than having CFLAGS= in the template files. It uses -O2 for gcc (generated by autoconf), and -O for non-gcc, unless the template overrides it. | |||
* | Change "query:" to "statement:". | Bruce Momjian | 2003-10-09 | |
| | | | | Have log_duration print when log_min_duration_statement prints. | |||
* | Add quotes to CFLAG define. | Bruce Momjian | 2003-10-09 | |
| | ||||
* | Protected access to variable m_preparedCount via synchronized | Jan Wieck | 2003-10-09 | |
| | | | | | | | function to prevent multiple threads using automatic cursors on the same connection from stomping over each others cursor. Jan | |||
* | New translations | Peter Eisentraut | 2003-10-08 | |
| | ||||
* | New translations | Peter Eisentraut | 2003-10-08 | |
| | ||||
* | Add quotes around -O setting for consistency. | Bruce Momjian | 2003-10-08 | |
| | ||||
* | Removed my debug printf() call from numeric.c | Michael Meskes | 2003-10-08 | |
| | ||||
* | Use calloc() to allocate empty structures. | Bruce Momjian | 2003-10-08 | |
| | | | | | Fix pg_restore tar log output bug where Special flag wasn't being initialized; bug seen on XP. | |||
* | Have log_min_duration_statement = 0 always print duration/statement. | Bruce Momjian | 2003-10-08 | |
| | | | | | | Change log line to be "duration: ms query:" Indent multi-line queries with a tab in the server logs. | |||
* | Fixed floating point exception in long=>numeric conversion. | Michael Meskes | 2003-10-07 | |
| | ||||
* | Fix include used by entab. | Bruce Momjian | 2003-10-07 | |
| | ||||
* | Add missing include file. | Peter Eisentraut | 2003-10-07 | |
| | ||||
* | Fixed error handling in Informix compat str to date conversion. | Michael Meskes | 2003-10-07 | |
| | ||||
* | New Italian translation | Peter Eisentraut | 2003-10-06 | |
| | ||||
* | Fix binary_oper_exact() so that the heuristic 'an unknown literal on | Tom Lane | 2003-10-06 | |
| | | | | | | one side of a binary operator is probably supposed to be the same type as the other operand' will be applied for domain types. This worked in 7.3 but was broken in 7.4 due to code rearrangements. Mea culpa. | |||
* | Translation updates | Peter Eisentraut | 2003-10-06 | |
| | ||||
* | During ALTER TABLE ADD FOREIGN KEY, try to check the existing rows using | Tom Lane | 2003-10-06 | |
| | | | | | | a single LEFT JOIN query instead of firing the check trigger for each row individually. Stephan Szabo, with some kibitzing from Tom Lane and Jan Wieck. | |||
* | New Slovene translations | Peter Eisentraut | 2003-10-06 | |
| | ||||
* | - Fixed constant listing in execute using clause. | Michael Meskes | 2003-10-06 | |
| | | | | | - Fixed typo in ecpg for Informix dec_t type. - Fixed precision handling in Informix compat funxtions. | |||
* | Translation updates | Peter Eisentraut | 2003-10-06 | |
| | ||||
* | Modify COPY FROM to match the null-value string against the column value | Tom Lane | 2003-10-06 | |
| | | | | | | | | | | | before it is de-backslashed, not after. This allows the null string \N to be reliably distinguished from the data value \N (which must be represented as \\N). Per bug report from Manfred Koizar ... but it's amazing this hasn't been reported before ... Also, be consistent about encoding conversion for null string: the form specified in the command is in the server encoding, but what is sent to/from client must be in client encoding. This never worked quite right before either. | |||
* | Fix order of operations within SendQuery() so that the time spent in | Tom Lane | 2003-10-06 | |
| | | | | | data transfer during COPY is included in the \timing display. Also avoid portability problems if tv_usec is unsigned on some platform. | |||
* | Add a little more smarts to estimate_hash_bucketsize(): if there's no | Tom Lane | 2003-10-05 | |
| | | | | | statistics, but there is a unique index on the column, we can safely assume it's well-distributed. | |||
* | Make psql \timing show three digits. | Bruce Momjian | 2003-10-05 | |
| | ||||
* | Translation updates | Peter Eisentraut | 2003-10-05 | |
| | ||||
* | When revoking privileges from the owner, don't revoke the grant options, | Peter Eisentraut | 2003-10-05 | |
| | | | | to avoid recursively revoking everything from everyone. | |||
* | Fixed bug in day of week processing. | Michael Meskes | 2003-10-05 | |
| | ||||
* | Translation update | Peter Eisentraut | 2003-10-04 | |
| | ||||
* | Document the always-true-but-previously-undocumented fact that PQfnumber() | Tom Lane | 2003-10-04 | |
| | | | | | | | will downcase the supplied field name unless it is double-quoted. Also, upgrade the routine's handling of double quotes to match the backend, in particular support doubled double quotes within quoted identifiers. Per pgsql-interfaces discussion a couple weeks ago. | |||
* | Fix pg_get_constraintdef() to ensure CHECK constraints are always shown | Tom Lane | 2003-10-04 | |
| | | | | | | | with required outer parentheses. Breakage seems to be leftover from domain-constraint patches. This could be smarter about suppressing extra parens, but at this stage of the release cycle I want certainty not cuteness. | |||
* | Translation updates | Peter Eisentraut | 2003-10-04 | |
| | ||||
* | Translation update | Peter Eisentraut | 2003-10-04 | |
| | ||||
* | Fix log_duration and log_min_duration_statement to print properly, as | Bruce Momjian | 2003-10-04 | |
| | | | | pointed out by Peter. | |||
* | Translation updates | Peter Eisentraut | 2003-10-04 | |
| |