summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2009-05-13Rewrite xml.c's memory management (yet again). Give up on the idea ofTom Lane
2009-05-12Fix LOCK TABLE to eliminate the race condition that could make it give weirdTom Lane
2009-05-12Modify find_inheritance_children() and find_all_inheritors() to add theTom Lane
2009-05-12Do some minor code refactoring in preparation for changing the APIs ofTom Lane
2009-05-09Fix cost_nestloop and cost_hashjoin to model the behavior of semi and antiTom Lane
2009-05-08'PGDLLIMPORT' ShmemVariableCache, needed for pg_migrator.so functionBruce Momjian
2009-05-07Add an option to AlterTableCreateToastTable() to allow its caller to forceTom Lane
2009-05-05Install a "dead man switch" to allow the postmaster to detect cases whereTom Lane
2009-04-28Improve pull_up_subqueries logic so that it doesn't insert unnecessaryTom Lane
2009-04-24Move gettext encoding names into encnames.c, so we only have one place to upd...Magnus Hagander
2009-04-19Assorted portability fixes for Borland C, from Pavel Golub.Tom Lane
2009-04-19Rethink the idea of having plpgsql depend on parser/gram.h. Aside from theTom Lane
2009-04-19Fix estimate_num_groups() to not fail on PlaceHolderVars, per report fromTom Lane
2009-04-16Fix planner to restore its previous level of intelligence about pushingTom Lane
2009-04-10commit and tag beta1REL8_4_BETA1Marc G. Fournier
2009-04-09Remove SQL-compatibility function cardinality(). It is not exactly clearTom Lane
2009-04-08XMLATTRIBUTES() should send the attribute values throughPeter Eisentraut
2009-04-08Tell gettext which codeset to use by calling bind_textdomain_codeset(). WeHeikki Linnakangas
2009-04-07Add an optional parameter to pg_start_backup() that specifies whether to doTom Lane
2009-04-06Rename the new CREATE DATABASE options to set collation and ctype intoHeikki Linnakangas
2009-04-05Change cardinality() into a C-code function, instead of a SQL-languageTom Lane
2009-04-05Change EXPLAIN output so that subplans and initplans (particularly CTEs)Tom Lane
2009-04-05Remove a boatload of useless definitions of 'int optreset'. If weTom Lane
2009-04-05I had always wondered why pg_config.h.win32 claimed that WindowsTom Lane
2009-04-04Make an attempt at fixing our current Solaris 11 breakage: add a configureTom Lane
2009-04-04Remove the recently added node types ReloptElem and OptionDefElem in favorTom Lane
2009-04-04A session that does not have any live snapshots does not have to be waited forTom Lane
2009-04-04Disallow setting fillfactor for TOAST tables.Alvaro Herrera
2009-04-02Refactor ExecProject and associated routines so that fast-path code is usedTom Lane
2009-04-02Fix SetClientEncoding() to maintain a cache of previously selected encodingTom Lane
2009-03-31Modify the relcache to record the temp status of both local and nonlocalTom Lane
2009-03-31Add a "relistemp" boolean column to pg_class, which is true for temporaryTom Lane
2009-03-30Fix an oversight in the support for storing/retrieving "minimal tuples" inTom Lane
2009-03-27Fix possible failures when a tuplestore switches from in-memory to on-diskTom Lane
2009-03-26Gettext plural supportPeter Eisentraut
2009-03-26If we expect a hash join to be performed in multiple batches, suppressTom Lane
2009-03-25Adjust the APIs for GIN opclass support functions to allow the extractQuery()Tom Lane
2009-03-24Install a search tree depth limit in GIN bulk-insert operations, to preventTom Lane
2009-03-24Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane
2009-03-23Const-ify the parse table passed to fillRelOptions. The previous codingTom Lane
2009-03-21Optimize multi-batch hash joins when the outer relation has a nonuniformTom Lane
2009-03-10Make SubPlan nodes carry the result's typmod as well as datatype OID. This isTom Lane
2009-03-09Accept 'on' and 'off' as input for boolean data type, unifying the syntaxPeter Eisentraut
2009-03-09Revert pg_bind_textdomain_codeset to a existant-but-empty function whenAlvaro Herrera
2009-03-08pg_bind_textdomain_codeset must exist only on ENABLE_NLS.Alvaro Herrera
2009-03-08On Windows, call bind_textdomain_codeset on domains other than the default one,Alvaro Herrera
2009-03-07Separate the key word list that lived in keywords.c into a new header fileAlvaro Herrera
2009-03-05Teach the planner to support index access methods that only implementTom Lane
2009-03-04Add new SQL:2008 error codes for invalid LIMIT and OFFSET values. RemovePeter Eisentraut
2009-03-03Remove the placeholder LWLockId in place of the removed FreeSpaceLock.Heikki Linnakangas