summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2007-01-04Fix some small typos in comments. Greg StarkTom Lane
2007-01-03Fix regex_fixed_prefix() to cope reasonably well with regex patterns of theTom Lane
2007-01-03Clean up smgr.c/md.c APIs as per discussion a couple months ago. Instead ofTom Lane
2007-01-03Widen the money type to 64 bits.D'Arcy J.M. Cain
2007-01-02finite() no longer used; remove finite() platform-specificBruce Momjian
2007-01-02Add n_live_tuples and n_dead_tuples to pg_stat_all_tables.Bruce Momjian
2006-12-30Support type modifiers for user-defined types, and pull most knowledgeTom Lane
2006-12-29De-escape XML names when reverse-compiling XML expressions.Peter Eisentraut
2006-12-28Add send and recv functions for xml type.Peter Eisentraut
2006-12-28Add a defense to prevent core dumps if 8.2 version of rank_cd() is used withTom Lane
2006-12-26Fix failure due to accessing an already-freed tuple descriptor in a planTom Lane
2006-12-24Fix machine-dependent crash in sqlchar_to_unicode(). Get rid ofTom Lane
2006-12-24Code review for XML patch. Instill a bit of sanity in the location ofTom Lane
2006-12-23Suppress various compiler warnings in new xml code.Tom Lane
2006-12-23Restructure operator classes to allow improved handling of cross-data-typeTom Lane
2006-12-21Catalog version bump for SQL/XML changes.Peter Eisentraut
2006-12-21Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut
2006-12-18Set pg_am.amstrategies to zero for index AMs that don't have fixedTom Lane
2006-12-12Fix planner to do the right thing when a degenerate outer join (one whoseTom Lane
2006-12-10Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane
2006-12-08Remove the logId/logSeg fields from pg_control, because they are not neededTom Lane
2006-12-06Add a txn_start column to pg_stat_activity. This makes it easier toNeil Conway
2006-12-04Refactor ExecGetJunkAttribute to avoid searching for junk attributesTom Lane
2006-12-02Stamp 8.2, except configure.in.Bruce Momjian
2006-11-28Mark to_char(timestamp without timezone) as stable, not immutable, since itsTom Lane
2006-11-28protect vfprintf from hijacking by Windows gettext just like other members of...Andrew Dunstan
2006-11-25update for rc1PostgreSQL Daemon
2006-11-24Change pg_stat_all_tables and sister views to put the recently-addedTom Lane
2006-11-23Update lock comments for concurrent index creation, analyze.Bruce Momjian
2006-11-21Get rid of retail definitions of HAVE_STRDUP and HAVE_VSNPRINTF inTom Lane
2006-11-17Repair two related errors in heap_lock_tuple: it was failing to recognizeTom Lane
2006-11-08Tweak accumArrayResult() to double the size of its working arrays whenTom Lane
2006-11-07Tag as Beta3 ... two outstanding *known* bugs before RC1 ...PostgreSQL Daemon
2006-11-06Revert to the pre-8.2 method of probing for libm, that is, alwaysTom Lane
2006-11-05Fix recently-identified PITR recovery hazard: the base backup could containTom Lane
2006-11-05Fix recently-understood problems with handling of XID freezing, particularlyTom Lane
2006-11-01Fix "failed to re-find parent key" btree VACUUM failure by revising pageTom Lane
2006-10-23Stamp 8.2beta2.Tom Lane
2006-10-19Rename our substitute qsort to pg_qsort at the link-symbol level (butTom Lane
2006-10-19Further MSVC portability fixes from Magnus.Tom Lane
2006-10-19Clean up local redeclarations of variables with DLLIMPORT, per reportTom Lane
2006-10-18Fix up timetz input so that a date is required only when the specifiedTom Lane
2006-10-15Redesign the patch for allocation of shmem space and LWLocks for add-onTom Lane
2006-10-13Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane
2006-10-11Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane
2006-10-07On platforms that have getrlimit(RLIMIT_STACK), use it to ensure thatTom Lane
2006-10-06Fix SysCacheGetAttr() to handle the case where the specified syscache has notTom Lane
2006-10-05Cleanup for pglz_compress code: remove dead code, const-ify API ofTom Lane
2006-10-05Make use of qsort_arg in several places that were formerly using klugyTom Lane
2006-10-05Work around buggy strtod on (some versions of?) IRIX. Combination ofTom Lane