Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | okay, sorry for delay all ... here is the tag for RC1 ...REL7_2_RC1 | PostgreSQL Daemon | 2002-01-22 |
| | |||
* | Suppress bogus soname switch that RedHat RPMs put into tclConfig.sh. | Tom Lane | 2002-01-21 |
| | |||
* | Spell-check and markup police | Peter Eisentraut | 2002-01-20 |
| | |||
* | Mention that 'make distclean' is a good idea when changing configure | Tom Lane | 2002-01-20 |
| | | | | | options. Document --with-pam and --enable-depend, do some minor copy-editing. | ||
* | Add IN/EXISTS file. | Bruce Momjian | 2002-01-20 |
| | |||
* | Add | Bruce Momjian | 2002-01-20 |
| | | | | > * Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS [exists] | ||
* | Update from Kova'cs Zolta'n | Peter Eisentraut | 2002-01-18 |
| | |||
* | Add missing literal endtag. | Bruce Momjian | 2002-01-18 |
| | |||
* | Add info about how to enable large-file support, so that pg_dump won't | Tom Lane | 2002-01-18 |
| | | | | choke at 2Gb of output. From Andrew Sullivan. | ||
* | Add: | Bruce Momjian | 2002-01-18 |
| | | | | > * Use thread-safe crypt() in libpq, if available | ||
* | Improve non-thread-safe mention of libpq's crypt. | Bruce Momjian | 2002-01-18 |
| | |||
* | Improve description of autocommit behavior in ecpg manual pages. | Bruce Momjian | 2002-01-18 |
| | |||
* | You might want to run pg_indent on pg_backup_db.c however ... | Bruce Momjian | 2002-01-18 |
| | | | | tom lane | ||
* | Fixes to getImportedKeys/getExportedKeys from Jason Davies | Dave Cramer | 2002-01-18 |
| | | | | Previous versions did not correctly identify primary/foreign keys | ||
* | Fix pg_restore to handle the 'set max oid' entry correctly in archives | Tom Lane | 2002-01-18 |
| | | | | | dumped by pg_dump -o. Per bug report posted by Bruce; fix is from Philip Warner, reviewed by Tom Lane. | ||
* | Add missing 'else', per report from sugita@sra.co.jp. | Tom Lane | 2002-01-18 |
| | |||
* | Accept subsequent commits. This should have been just a warning anyway. I | Michael Meskes | 2002-01-18 |
| | | | | cannot see a reason why it should be an error. | ||
* | Enable /contrib/pg_upgrade, mention little testing. | Bruce Momjian | 2002-01-18 |
| | |||
* | Explain privileges required for LOCK. Minor wordsmithing too. | Tom Lane | 2002-01-18 |
| | |||
* | Point out that superusers bypass privilege checking. Minor wordsmithing. | Tom Lane | 2002-01-18 |
| | |||
* | Fix misstatements added by Bruce. | Tom Lane | 2002-01-16 |
| | |||
* | Add more comments to tqual.c for visibility functions. | Bruce Momjian | 2002-01-16 |
| | |||
* | TOAST needs to do at least minimal time-qual checking in order not to | Tom Lane | 2002-01-16 |
| | | | | | | | | | | | mess up after an aborted VACUUM FULL, per today's pghackers discussion. Add a suitable HeapTupleSatisfiesToast routine. Remove useless special- case test in HeapTupleSatisfiesVisibility macro for xmax = BootstrapTransactionId; perhaps that was needed at one time, but it's a waste of cycles now, not to mention actively wrong for SnapshotAny. Along the way, add some much-needed comments to tqual.c, and simplify toast_fetch_datum, which no longer needs to assume it may see chunks out-of-order. | ||
* | Fix init_irels to close the pg_internal.init file before returning. | Tom Lane | 2002-01-16 |
| | | | | | | This saves one open file descriptor per backend, and avoids an annoying NOTICE on Cygwin (which has trouble deleting open files). Bug appears to date back to original coding of init_irels, circa 1992. | ||
* | If we fail to rename pg_internal.init into place, delete the useless | Tom Lane | 2002-01-15 |
| | | | | | temporary file. This seems to be a known failure mode under Cygwin, so we might as well expend the extra line of code to be tidy. | ||
* | Add more sanity-checking to PageAddItem and PageIndexTupleDelete, | Tom Lane | 2002-01-15 |
| | | | | | | | to prevent spreading of corruption when page header pointers are bad. Merge PageZero into PageInit, since it was never used separately, and remove separate memset calls used at most other PageInit call points. Remove IndexPageCleanup, which wasn't used at all. | ||
* | Fix typo that caused equalTriggerDescs() to return false in cases where | Tom Lane | 2002-01-15 |
| | | | | | the two trigger sets were logically equal, but not in the same order. Caught by Holger Krug (hkrug@rationalizer.com). | ||
* | Applied patch submitted by Ryouichi Matsuda (r-matuda@sra.co.jp) that fixed ↵ | Barry Lind | 2002-01-15 |
| | | | | a problem with leading zeros being lost on fractional seconds when setting a timestamp value on a PreparedStatement. | ||
* | Applied patch from Ryouichi Matsuda <r-matuda@sra.co.jp> where the jdbc | Barry Lind | 2002-01-15 |
| | | | | | driver was not properly handling timestamptz datatype when using the getObject() method on ResultSet. Fix adds this datatype to the object mappings. | ||
* | Manual page improvements. | Bruce Momjian | 2002-01-15 |
| | |||
* | More cleanups. | Bruce Momjian | 2002-01-15 |
| | |||
* | pg_upgrade doesn't live here anymore. Remove dangling references. | Tom Lane | 2002-01-15 |
| | |||
* | Keep pg_upgrade as disabled. | Bruce Momjian | 2002-01-15 |
| | |||
* | More wording improvements. | Bruce Momjian | 2002-01-15 |
| | |||
* | More updates. | Bruce Momjian | 2002-01-15 |
| | |||
* | Remove old pg_upgrade script, from Tom. | Bruce Momjian | 2002-01-15 |
| | |||
* | More cleanups with ideas from Peter. | Bruce Momjian | 2002-01-15 |
| | |||
* | Add Peter's portability and option suggestions. | Bruce Momjian | 2002-01-15 |
| | |||
* | Update permissions? | Bruce Momjian | 2002-01-14 |
| | |||
* | Reduce severity of 'XLogFlush: request is not satisfied' error condition, | Tom Lane | 2002-01-14 |
| | | | | | | per my proposal of a couple days ago. This will eliminate the unable- to-restart-database class of problem that we have seen reported half a dozen times with 7.1.*. | ||
* | Ensure that ecpg/test is cleaned by higher-level 'make clean'. | Tom Lane | 2002-01-14 |
| | |||
* | Add README file. | Bruce Momjian | 2002-01-14 |
| | |||
* | Doc improvements. | Bruce Momjian | 2002-01-14 |
| | |||
* | Add manual page to /contrib. SGML from docs. | Bruce Momjian | 2002-01-14 |
| | |||
* | Move pg_upgrade to /contrib. Still need to make Peter's portability | Bruce Momjian | 2002-01-14 |
| | | | | changes. | ||
* | Small AIX fixes from Rick Flower. | Bruce Momjian | 2002-01-14 |
| | |||
* | tag as beta 5 for *hopefully* a very very short beta cycle on this one?REL7_2_BETA5 | PostgreSQL Daemon | 2002-01-14 |
| | |||
* | Fix recreation of sequence files for 7.2 also because of XID change from | Bruce Momjian | 2002-01-13 |
| | | | | beta4 to beta5. | ||
* | - Fixed variable handling for struct members. | Michael Meskes | 2002-01-13 |
| | | | | | - Removed check for array input. An attribut might store the complete array. | ||
* | Now works for 7.1 databases. | Bruce Momjian | 2002-01-13 |
| |