Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Fix DatabaseMetaData results for determining foreign key | Kris Jurka | 2004-06-16 | |
| | | | | | | | relationships. Resulting columns from getImportedExportedKeys should be FKTABLE_SCHEM and PKTABLE_SCHEM, not _SCHEMA. Per report from jeff@bonevich.com. | |||
* | Remove README.CVS when making a distribution.REL7_4_3 | Peter Eisentraut | 2004-06-13 | |
| | ||||
* | Translation update | Peter Eisentraut | 2004-06-13 | |
| | ||||
* | Correct erroneous table title, per Halley Pacheco de Oliveira. | Tom Lane | 2004-06-13 | |
| | ||||
* | Suppress compile warnings on machines where the INT64CONST() decoration | Tom Lane | 2004-06-13 | |
| | | | | is actually needed. Backport of Oliver Elphick's recent patch. | |||
* | Now needs to include <ctype.h>. | Tom Lane | 2004-06-12 | |
| | ||||
* | Some editorializing on 7.4.3 release notes. | Tom Lane | 2004-06-12 | |
| | ||||
* | Markup fix. | Bruce Momjian | 2004-06-12 | |
| | ||||
* | Fix markup | Bruce Momjian | 2004-06-12 | |
| | ||||
* | Update release notes for 7.4.3. | Bruce Momjian | 2004-06-12 | |
| | ||||
* | Stamp 7.4.3. Still need release notes. | Bruce Momjian | 2004-06-11 | |
| | ||||
* | ECPG preprocessor for PostgreSQL 7.4.1, 7.4.2 doubles const, | Bruce Momjian | 2004-06-11 | |
| | | | | | | | volatile, static, and register keywords before variables, declared as VARCHAR. Sergey N. Yatskevich | |||
* | Translation updates | Peter Eisentraut | 2004-06-10 | |
| | ||||
* | Translation updates | Peter Eisentraut | 2004-06-10 | |
| | ||||
* | Translation update | Peter Eisentraut | 2004-06-10 | |
| | ||||
* | Add Brazilian version of FAQ. | Bruce Momjian | 2004-06-10 | |
| | | | | Euler Taveira de Oliveira | |||
* | Add missing check for too-few-inputs when replacing a zero-dimensional | Tom Lane | 2004-06-08 | |
| | | | | array. | |||
* | tag this as 7.4.3 and copyright date 2004 | PostgreSQL Daemon | 2004-06-08 | |
| | ||||
* | Remove asymetrical word processing in query and text | Teodor Sigaev | 2004-06-07 | |
| | ||||
* | Adjust PageGetMaxOffsetNumber to ensure sane behavior on uninitialized | Tom Lane | 2004-06-05 | |
| | | | | pages, even when the macro's result is stored into an unsigned variable. | |||
* | I think I've finally identified the cause of the off-by-one-second | Tom Lane | 2004-05-31 | |
| | | | | | | | | | | issue in timestamp conversion that we hacked around for so long by ignoring the seconds field from localtime(). It's simple: you have to watch out for platform-specific roundoff error when reducing a possibly-fractional timestamp to integral time_t form. In particular we should subtract off the already-determined fractional fsec field. This should be enough to get an exact answer with int64 timestamps; with float timestamps, throw in a rint() call just to be sure. | |||
* | Translation update | Peter Eisentraut | 2004-05-29 | |
| | ||||
* | Fix problems in pg_autovacuum: | Bruce Momjian | 2004-05-26 | |
| | | | | | | | | 1) temp table crash 2) Check send_query() function call return value. Backpatch to 7.4.X. | |||
* | [ Backpatch to 7.4.X.] | Bruce Momjian | 2004-05-26 | |
| | | | | | | Fix problem with doing 7.0.X dumps on character varying[] fields. Christopher Kings-Lynne | |||
* | Fix erroneous error message printout when a configuration file contains | Tom Lane | 2004-05-25 | |
| | | | | | an overlength token. Printout was always garbage and could dump core entirely :-(. Per report from Martin Pitt. | |||
* | Reduce pg_listener lock taken by NOTIFY et al from AccessExclusiveLock | Tom Lane | 2004-05-22 | |
| | | | | | | to ExclusiveLock. This still serializes the operations of this module, but doesn't conflict with concurrent ANALYZE operations. Per trouble report from Philip Warner a few weeks ago. | |||
* | Fixed DEALLOCATE PREPARE to use correct function call | Michael Meskes | 2004-05-21 | |
| | ||||
* | Fix setting timestamp values with very early year values, like 2, by | Kris Jurka | 2004-05-17 | |
| | | | | | | | formatting all years with four digits. Previously 0002-10-30 was being sent as 2-10-30 which got turned into 2030-02-10. Per report from oneway_111. | |||
* | Propagate enlargeStringInfo() fixes into the equivalent code in | Tom Lane | 2004-05-14 | |
| | | | | | pqexpbuffer.c. While a client-side failure doesn't seem like a security issue, it's still a bug. | |||
* | Tighten up overflow check in path_recv, pursuant to code review inspired | Tom Lane | 2004-05-12 | |
| | | | | | | by Ken Ashcraft's report. I think there is no actual bug here since if the int32 value does wrap a little bit, palloc will still reject it. Still it's better that the code be obviously correct. | |||
* | Add tests to enlargeStringInfo() to avoid possible buffer-overrun or | Tom Lane | 2004-05-11 | |
| | | | | infinite-loop problems if a bogus data length is passed. | |||
* | Fix oversights in processing of LIMIT expressions during planning. | Tom Lane | 2004-05-11 | |
| | ||||
* | Repair recalculation failure for nested sub-SELECTs, per bug report from | Tom Lane | 2004-05-11 | |
| | | | | | Didier Moens. Bug is new in 7.4, and was caused by not updating everyplace I should've when replacing locParam markers by allParam. | |||
* | Just another bug in adjust_informix. | Michael Meskes | 2004-05-10 | |
| | ||||
* | - Fixed bug that reversed string length in typedefs. | Michael Meskes | 2004-05-07 | |
| | ||||
* | Allow public access to radius field to match other geometric types | Kris Jurka | 2004-05-07 | |
| | | | | | | behavior. Per report from Declan Lynch. | |||
* | NATURAL CROSS JOIN is a contradiction in terms, not to mention disallowed | Tom Lane | 2004-05-07 | |
| | | | | | by the SQL spec and by our parser. Thanks to Jonathan Scott for finding this longstanding error. | |||
* | Don't assume that struct timeval's tv_sec field is the same datatype as | Tom Lane | 2004-05-05 | |
| | | | | time_t; on some platforms they are not the same width. Per Manfred Koizar. | |||
* | Unset PGCLIENTENCODING to prevent backend from dying if it's set | Tom Lane | 2004-05-05 | |
| | | | | to something incompatible with the -E option. | |||
* | Fixed bug in adjust_informix that treated arrays as simple variables. | Michael Meskes | 2004-05-05 | |
| | ||||
* | I thought we'd made initdb safe against newline-munging issues, but on | Tom Lane | 2004-04-29 | |
| | | | | | inspection we fixed only one of the two uses of COPY :-(. Fix the other. This is already correct in CVS tip, but 7.4.3 could use the patch. | |||
* | Update the build.xml file to support building with the new 1.5 jdk | Kris Jurka | 2004-04-26 | |
| | | | | and ant 1.6. | |||
* | Ensure getaddrinfo_all returns null result on failure. | Tom Lane | 2004-04-24 | |
| | ||||
* | Allow updateable ResultSets to support types that aren't directly | Kris Jurka | 2004-04-24 | |
| | | | | | | mappable to Java types, for example cidr. Per report from Moray Taylor. | |||
* | Fixed memory misusage in variable handling. | Michael Meskes | 2004-04-23 | |
| | ||||
* | Fix typo | Peter Eisentraut | 2004-04-22 | |
| | ||||
* | New link for Solaris IPC article | Peter Eisentraut | 2004-04-22 | |
| | ||||
* | Tweak findTargetlistEntry so that bare names occurring in GROUP BY clauses | Tom Lane | 2004-04-18 | |
| | | | | | | | | are sought first as local FROM columns, then as local SELECT-list aliases, and finally as outer FROM columns; the former behavior made outer FROM columns take precedence over aliases. This does not change spec conformance because SQL99 allows only the first case anyway, and it seems more useful and self-consistent. Per gripe from Dennis Bjorklund 2004-04-05. | |||
* | Translation updates | Peter Eisentraut | 2004-04-15 | |
| | ||||
* | Still another place to make the world safe for zero-column tables. | Tom Lane | 2004-04-07 | |
| | | | | Per example from Jiang Wei. |