Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Tweak GiST code to work correctly on machines where 8-byte alignment | Tom Lane | 2002-02-11 |
| | | | | | | of pointers is required. Patch from Teodor Sigaev per pghackers discussion. It's an ugly kluge but avoids forcing initdb; we'll put a better fix into 7.3 or later. | ||
* | Fix for old FreeBSD versions that don't have RTLD_GLOBAL | Peter Eisentraut | 2002-02-11 |
| | |||
* | Repair problems with EvalPlanQual where target table is scanned as | Tom Lane | 2002-02-11 |
| | | | | | | | inner indexscan (ie, one with runtime keys). ExecIndexReScan must compute or recompute runtime keys even if we are rescanning in the EPQ case. TidScan seems to have comparable problems. Per bug noted by Barry Lind 11-Feb-02. | ||
* | Be more wary about mixed-case database names and user names. Get | Tom Lane | 2002-02-11 |
| | | | | the CREATE DATABASE command right in pg_dump -C case. | ||
* | Don't Assert() that fsync() and close() never fail; I have seen this | Tom Lane | 2002-02-10 |
| | | | | | crash on Solaris when over disk quota. Instead, report such failures via elog(DEBUG). | ||
* | Move sys/types.h to top, for hiroyuki hanai/ FreeBSD. | Bruce Momjian | 2002-02-08 |
| | |||
* | pgstat's truncation of query string needs to be multibyte-aware. | Tom Lane | 2002-02-07 |
| | | | | Patch from sugita@sra.co.jp. | ||
* | Removed a check for REINDEX TABLE. | Hiroshi Inoue | 2002-02-07 |
| | |||
* | Fix failure to reconnect as sequence's owner before issuing setval(). | Tom Lane | 2002-02-06 |
| | |||
* | Update Win32-world version number of libpq++. | Peter Eisentraut | 2002-01-30 |
| | |||
* | Add cast to suppress gcc warning on Darwin platform. | Tom Lane | 2002-01-30 |
| | |||
* | update | Peter Eisentraut | 2002-01-29 |
| | |||
* | Make S/390 TAS spell __inline__ the same way as the other eight GCC | Tom Lane | 2002-01-29 |
| | | | | inline routines do. | ||
* | Updates from Serguei Mokhov | Peter Eisentraut | 2002-01-26 |
| | |||
* | Tweak pg_dump to say GRANT ALL when appropriate, rather than enumerating | Tom Lane | 2002-01-25 |
| | | | | | | the individual privilege bits. I regard this as an important change for cross-version compatibility: without this, a 7.1 dump loaded into 7.2 is likely to be short a few privileges. | ||
* | Tweak plperl.c to compile against threaded Perls, per report from | Tom Lane | 2002-01-24 |
| | | | | cturner@redhat.com. | ||
* | pltcl's spi_execp didn't handle NULL arguments quite correctly. | Tom Lane | 2002-01-24 |
| | | | | | It would try to call the input conversion routines for them anyway. So, a valid input string for the datatype had to be supplied. | ||
* | Fix incorrect test for whether Perl code is returning undef. This | Tom Lane | 2002-01-24 |
| | | | | allows plperl routines to return NULL as intended. | ||
* | Fix logic error in insert_fsm_page_entry: because compact_fsm_page_list | Tom Lane | 2002-01-24 |
| | | | | | | | removes any empty chunks, the chunk previously added won't be there anymore, so it's possible there is zero free space in the rel's page list afterwards. Must loop back and rerun the part that adds a chunk to the list. | ||
* | Remove long-obsolete version of pltcl documentation. | Tom Lane | 2002-01-23 |
| | |||
* | Clean up Red Hat Tcl RPM brain-damage in a more reliable way: fix the | Tom Lane | 2002-01-23 |
| | | | | | value of TCL_SHLIB_LD in the shell script that creates Makefile.tcldefs, rather than trying to persude gmake to do it. | ||
* | Added patch to temporarily disable locale for descriptors too (Christof) | Michael Meskes | 2002-01-23 |
| | |||
* | libpq++/pgconnection.h must not include postgres_fe.h, else it fails to | Tom Lane | 2002-01-22 |
| | | | | | | compile in client apps that use the standard installed header set. To allow removing that include, move DLLIMPORT definitions out of c.h and into the appropriate port-specific header files. | ||
* | Suppress bogus soname switch that RedHat RPMs put into tclConfig.sh. | Tom Lane | 2002-01-21 |
| | |||
* | Add IN/EXISTS file. | Bruce Momjian | 2002-01-20 |
| | |||
* | Update from Kova'cs Zolta'n | Peter Eisentraut | 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. | ||
* | 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. | ||
* | pg_upgrade doesn't live here anymore. Remove dangling references. | Tom Lane | 2002-01-15 |
| | |||
* | Remove old pg_upgrade script, from Tom. | Bruce Momjian | 2002-01-15 |
| | |||
* | 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 |
| | |||
* | Small AIX fixes from Rick Flower. | Bruce Momjian | 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 |
| | |||
* | Now tested on 7.2->7.2 migration; still disabled. Need 7.1 testing now. | Bruce Momjian | 2002-01-13 |
| | |||
* | Keep it disabled. | Bruce Momjian | 2002-01-13 |
| |