| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2002-12-16 | Fix ALTER TABLE ADD COLUMN to disallow the same column types that are | Tom Lane | |
| disallowed by CREATE TABLE (eg, pseudo-types); also disallow these types from being introduced by the range-function syntax. While at it, allow CREATE TABLE to create zero-column tables, per recent pghackers discussion. I am back-patching this into 7.3 since failure to disallow pseudo-types is arguably a security hole. | |||
| 2002-12-14 | The actual segfault was caused by a double pfree(), but ISTM that | Bruce Momjian | |
| failing to find pg_hba.conf should be a fatal error anyway, so I increased the priority of the elog() from LOG to FATAL and refactored the code a little bit. Neil Conway | |||
| 2002-12-14 | Ok, I think I've gotten this figured out now. I saw this comment in | Bruce Momjian | |
| pqcomm.c, switched the ERROR logs to COMMERROR logs and it all works. I've attached a patch to be-secure.c that fixes all my problems. Nathan Mueller | |||
| 2002-12-13 | Backpatch SSL fixes into 7.3.1. | Bruce Momjian | |
| 2002-12-13 | Increment libpq major number for 7.3.1 and minor for 7.4. | Bruce Momjian | |
| 2002-12-12 | Guard against overrunning CTZName buffer when TZ is bogus. | Tom Lane | |
| 2002-12-12 | Back-patch fix to prevent core dump in EXPLAIN if optimizer has | Tom Lane | |
| simplified function call to a constant. (7.3 won't actually execute such a plan anyway, but core dump is bad regardless.) | |||
| 2002-12-11 | Mark SCO Openserver 5.0.4. supported by 7.3.1 as per chat report from user. | Bruce Momjian | |
| template/sco updated. | |||
| 2002-12-11 | Fix line count error reporting in config files, like pg_hba.conf, per | Bruce Momjian | |
| report from Oliver Elphick. Backpatch to 7.3. | |||
| 2002-12-11 | Bump version for 7.3 and 7.4. | Bruce Momjian | |
| 2002-12-10 | Translation updates | Peter Eisentraut | |
| 2002-12-09 | Fix Latin1/Unicode conversion by selecting the right table. | Peter Eisentraut | |
| 2002-12-09 | As far as I figured from the source code this function only deals with | Bruce Momjian | |
| cleaning up locale names and nothing else. Since all the locale names are in plain ASCII I think it will be safe to use ASCII-only lower-case conversion. Nicolai Tufar | |||
| 2002-12-06 | Explain's code for showing quals of SubqueryScan nodes has been broken | Tom Lane | |
| all along; not noticed till now. It's a scan not an upper qual ... | |||
| 2002-12-05 | localbuf.c must be able to do blind writes. | Tom Lane | |
| 2002-12-05 | Avoid pulling up sublinks from a subselect's targetlist. Works around | Tom Lane | |
| problems that occur if sublink is referenced via a join alias variable. Perhaps this can be improved later, but a simple and safe fix is needed for 7.3.1. | |||
| 2002-12-05 | Allow 'password' encryption even when pg_shadow has MD5 passwords, per | Bruce Momjian | |
| report from Terry Yapt and Hiroshi. Backpatch to 7.3. | |||
| 2002-12-05 | changed sort of column names to sort by attnum, not attname | Dave Cramer | |
| 2002-12-04 | Repair oversight in recent change of dependency extraction code: when | Tom Lane | |
| recursing to handle a join alias var, the context had better be set to be appropriate to the join var's query level. Per report from Hristo Neshev. | |||
| 2002-12-02 | Repair core dump when trying to delete an entry from an already-NULL | Tom Lane | |
| datconfig or useconfig field. Per report from Dustin Sallings. | |||
| 2002-12-01 | Fix pg_dump failure against 7.1 or older servers, per | Tom Lane | |
| report from Philip Warner. | |||
| 2002-12-01 | Repair coredump in COPY OUT when client encoding is different from | Tom Lane | |
| server encoding, per report from Nicolai Tufar. This is a minimum-risk patch for 7.3.1 --- I intend to apply a more general repair in HEAD. | |||
| 2002-11-29 | Repair prehistoric logic error in lseg_eq and lseg_ne. | Tom Lane | |
| 2002-11-27 | Update resultmap pattern for geometry-solaris-i386-pc: should match | Tom Lane | |
| solaris 2.8 as well as 2.7. Per report from Martin Renters. | |||
| 2002-11-26 | Guard against 0 length string encoding conversion case. | Tatsuo Ishii | |
| 2002-11-25 | Remove check for pg_group file as part of initdb -W password assignment | Bruce Momjian | |
| --- not needed. | |||
| 2002-11-22 | Fix a dozen or so places that were passing unpredictable data strings | Tom Lane | |
| as elog format strings. Hai-Chen Tu pointed out the problem in contrib/dbmirror, but it wasn't the only such error. | |||
| 2002-11-22 | Quote database name properly when invoking pg_dump. Per report from | Tom Lane | |
| Christopher Kings-Lynne. | |||
| 2002-11-22 | TAS code originally written for s390 (32-bit) does not work for s390x | Tom Lane | |
| (64-bit). Fix it. Per report from Permaine Cheung. | |||
| 2002-11-21 | Fix breakage in new-in-7.3 timetz_zone() function: was giving random | Tom Lane | |
| results due to doing arithmetic on uninitialized values. Add some documentation about the AT TIME ZONE construct. Update some other date/time documentation that seemed out of date for 7.3. | |||
| 2002-11-21 | Code review for superuser_reserved_connections patch. Don't try to do | Tom Lane | |
| database access outside a transaction; revert bogus performance improvement in SIBackendInit(); improve comments; add documentation (this part courtesy Neil Conway). | |||
| 2002-11-21 | NetBSD versions 1.6 and (we hope) later can use the standard geometry | Tom Lane | |
| comparison file, instead of geometry-positive-zeros. Per report from Patrick Welche. | |||
| 2002-11-21 | This locale-specific variant file seems not to have been updated | Tom Lane | |
| when a test was added to select_having.sql back in June. | |||
| 2002-11-20 | Fix a stupid cut and paste error from the commit last night. | Barry Lind | |
| Modified Files: Tag: REL7_3_STABLE AbstractJdbc2Statement.java | |||
| 2002-11-20 | Backport bug with executeBatch. This bug was a regression from 7.2 and has | Barry Lind | |
| been reported by Marko Strukelj and Keith Wannamaker Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java jdbc/org/postgresql/test/jdbc2/BatchExecuteTest.java | |||
| 2002-11-18 | Put back error test for DECLARE CURSOR outside a transaction block ... | Tom Lane | |
| but do it correctly now. | |||
| 2002-11-15 | Push qual clauses containing subplans to the back of the qual list | Tom Lane | |
| at each plan node. Per gripe from Ross Reedstrom. | |||
| 2002-11-14 | Backpatch from head: fixes for a threading bug, a problem with setNull involving | Barry Lind | |
| server prepared statements and an improved error message Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/errors.properties jdbc/org/postgresql/core/Encoding.java jdbc/org/postgresql/core/QueryExecutor.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java | |||
| 2002-11-13 | Update German translations. | Peter Eisentraut | |
| 2002-11-13 | Allow +1300 as a numeric timezone specifier; we already accept FJST as ↵ | Tom Lane | |
| meaning +1300. | |||
| 2002-11-13 | Use cat instead of echo or awk, to avoid portability problems with backslashes. | Tom Lane | |
| 2002-11-12 | Update AIX resultmap for horology tests, per Andreas. | Tom Lane | |
| 2002-11-12 | Fix broken GB18030 <--> UTF-8 conversion map | Tatsuo Ishii | |
| 2002-11-12 | Remove NO_MKTIME_BEFORE_1970. I had speculated that it was not needed | Tom Lane | |
| anymore given the mktime() workaround now done in DetermineLocalTimeZone. This has now been confirmed by Robert Bruccoleri for Irix, and I'm going to extrapolate to AIX as well. | |||
| 2002-11-11 | Merge fix from head for proper join to pg_description | Barry Lind | |
| Modified Files: Tag: REL7_3_STABLE jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java | |||
| 2002-11-11 | Add cast to suppress compile warning on Alphas. | Tom Lane | |
| 2002-11-08 | Back-patch changes to address Perl _GNU_SOURCE problem. | Tom Lane | |
| 2002-11-07 | Remove inappropriate inclusions of OpenSSL internal header e_os.h, | Tom Lane | |
| as well as unnecessary (and incorrect on Windows) assignments to errno/SOCK_ERRNO. | |||
| 2002-11-07 | Remove no-longer-needed inclusions to improve backward compatibility | Tom Lane | |
| with older bison versions. | |||
| 2002-11-05 | Translation updates | Peter Eisentraut | |
