summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2008-11-15Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane
2008-11-14Second try at fixing DLLIMPORT problem for pg_crc.h on Cygwin.Tom Lane
2008-11-14Actually, instead of whining about how type internal might not safely storeTom Lane
2008-11-14Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera
2008-11-14Implement the basic form of UNNEST, ie unnest(anyarray) returns setofTom Lane
2008-11-13Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane
2008-11-13array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut
2008-11-13PGDLLIMPORT-ize the global variables referenced in pg_crc.h.Tom Lane
2008-11-12Update URL to Ross Williams' CRC paper.Alvaro Herrera
2008-11-12If we're going to use a SQL function for this, at least make it schema-proof.Tom Lane
2008-11-12array_length() function, and for SQL compatibility also cardinality()Peter Eisentraut
2008-11-11Get rid of adjust_appendrel_attr_needed(), which has been broken ever sinceTom Lane
2008-11-11Add support for input and output of interval values formatted per ISO 8601;Tom Lane
2008-11-10Make relhasrules and relhastriggers work like relhasindex, namely we letTom Lane
2008-11-09Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane
2008-11-09Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane
2008-11-07Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane
2008-11-06Improve bulk-insert performance by keeping the current target buffer pinnedTom Lane
2008-11-04ADD array_ndims functionPeter Eisentraut
2008-11-03Dept of second thoughts: seems it'd be safer if pg_typeof is markedTom Lane
2008-11-03Clean up the messy semantics (not to mention inefficiency) of PageGetTempPageTom Lane
2008-11-03suppress_redundant_updates_trigger function.Andrew Dunstan
2008-11-03Add pg_typeof() function.Tom Lane
2008-11-03Change the pgstat logic so that the stats collector writes the stats file onlyTom Lane
2008-11-02Remove the last vestiges of the MAKE_PTR/MAKE_OFFSET mechanism. We haven'tTom Lane
2008-11-02Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane
2008-10-31Simplify ExecutorRun's API and save some trivial number of cycles by havingTom Lane
2008-10-31Update FSM on WAL replay. This is a bit limited; the FSM is only updatedHeikki Linnakangas
2008-10-31Allow SQL-language functions to return the output of an INSERT/UPDATE/DELETETom Lane
2008-10-31Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas
2008-10-31Add support for user-defined I/O conversion casts.Heikki Linnakangas
2008-10-29Support for Sun Studio compiler on LinuxPeter Eisentraut
2008-10-29Unicode escapes in strings and identifiersPeter Eisentraut
2008-10-29Be more tense about not creating tuplestores with randomAccess = true unlessTom Lane
2008-10-28Extend ExecMakeFunctionResult() to support set-returning functions that returnTom Lane
2008-10-28Arrange to squeeze out the MINIMAL_TUPLE_PADDING in the tuple representationTom Lane
2008-10-28Remove support for (insecure) crypt authentication.Magnus Hagander
2008-10-27Install a more robust solution for the problem of infinite error-processingTom Lane
2008-10-24Reduce the memory footprint of large pending-trigger-event lists, as per myTom Lane
2008-10-23Remove useless ps_OuterTupleSlot field from PlanState. I suppose this wasTom Lane
2008-10-23* make pg_hba authoption be a set of 0 or more name=value pairsMagnus Hagander
2008-10-22Dept of better ideas: refrain from creating the planner's placeholder_listTom Lane
2008-10-22Fix GiST's killing tuple: GISTScanOpaque->curpos wasn'tTeodor Sigaev
2008-10-21Add a concept of "placeholder" variables to the planner. These are variablesTom Lane
2008-10-20Rework subtransaction commit protocol for hot standby.Alvaro Herrera
2008-10-20Remove mark/restore support in GIN and GiST indexes.Teodor Sigaev
2008-10-17Remove useless mark/restore support in hash index AM, per discussion.Tom Lane
2008-10-17Add a new column to pg_am to specify whether an index AM supports backwardTom Lane
2008-10-17Improve comments about RelOptInfo.reltargetlist.Tom Lane
2008-10-17Improve headeline generation. Now headline can containTeodor Sigaev