summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-11-10Fix 'Q' format char parsing in the new to_timestamp() code. Used to crash.Heikki Linnakangas
2008-11-10pg_do_encoding_conversion cannot return NULL (at least not unless the inputTom 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 startup check that pg_xlog and pg_xlog/archive_status exist.Tom Lane
2008-11-09Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane
2008-11-08Fix recently added code for SQL years-months interval syntax so thatTom 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-06The logic in systable_beginscan to translate heap attribute numbers toHeikki Linnakangas
2008-11-05This maneuver really requires a comment ...Tom Lane
2008-11-05change fix for suppress_redundant_updates_trigger() where relation has Oids, ...Andrew Dunstan
2008-11-05fix suppress_redundant_updates_trigger() where relation has Oids, per gripe f...Andrew Dunstan
2008-11-04ADD array_ndims functionPeter Eisentraut
2008-11-04Fix compiler warning about uninitialized variablePeter Eisentraut
2008-11-04Disallow LOCK TABLE outside a transaction block (or function), since this caseTom Lane
2008-11-04Fix compiler warnings (including a seriously bogus elog call); minorTom Lane
2008-11-03Use bool for a boolean flag.Tom Lane
2008-11-03Allow uuid_in() to parse a wider variety of variant input formats for the UUIDPeter Eisentraut
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-03Fix silly typo in previous commit.Alvaro Herrera
2008-11-03Fix TransactionIdSetStatusBit so that it doesn't try to change a transactionAlvaro Herrera
2008-11-03Reduce the acceptable staleness of pgstat data for autovacuum, per theAlvaro Herrera
2008-11-03Add pg_typeof() function.Tom Lane
2008-11-03Fix mistakes in comment headersAlvaro Herrera
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-31Added missing ';'Michael Meskes
2008-10-31Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas
2008-10-31Add support for user-defined I/O conversion casts.Heikki Linnakangas
2008-10-30Revert previous patch to put the shared memory segment on win32Magnus Hagander
2008-10-30Fix recoveryLastXTime logic so that it actually does what one would expect.Tom Lane
2008-10-29Support for Sun Studio compiler on LinuxPeter Eisentraut
2008-10-29Update on array features supportPeter Eisentraut
2008-10-29Since SQL:2003, the array size specification in the SQL ARRAY syntax hasPeter 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-28Change WorkTableScan to not support backward scan. The apparent supportTom Lane
2008-10-28Arrange to squeeze out the MINIMAL_TUPLE_PADDING in the tuple representationTom Lane
2008-10-28Add WITH [NO] DATA clause to CREATE TABLE AS, per SQL.Peter Eisentraut
2008-10-28Remove support for (insecure) crypt authentication.Magnus Hagander
2008-10-27Downgrade can't-happen error reports to elog().Alvaro Herrera
2008-10-27No need for extra code to log freezing zero tuples. Callers already check thatAlvaro Herrera
2008-10-27Make hba parsing error messages more specific.Magnus Hagander