summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2009-05-14Add recovery_end_command option to recovery.conf. recovery_end_commandHeikki Linnakangas
2009-05-13Add checks to DefineQueryRewrite() to prohibit attaching rules to relationsTom Lane
2009-05-13Rewrite xml.c's memory management (yet again). Give up on the idea ofTom Lane
2009-05-12Fix intratransaction memory leaks in xml_recv, xmlconcat, xmlroot, andTom 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-11Partially revert my patch of 2008-11-12 that installed a limit on the numberTom Lane
2009-05-11Support SSL certificate chains in the server certificate file.Magnus Hagander
2009-05-10Make a marginal performance improvement in predicate_implied_by andTom Lane
2009-05-09Fix cost_nestloop and cost_hashjoin to model the behavior of semi and antiTom Lane
2009-05-07Add an option to AlterTableCreateToastTable() to allow its caller to forceTom Lane
2009-05-07Ooops ... make_outerjoininfo wasn't actually enforcing the join orderTom Lane
2009-05-07Request XLOG switch before writing checkpoint in pg_start_backup(). OtherwiseHeikki Linnakangas
2009-05-06Tweak distribute_qual_to_rels so that when we decide a pseudoconstant qualTom Lane
2009-05-06Modify CREATE DATABASE to enforce that the source database's encoding settingTom Lane
2009-05-05Tweak a comment to agree a bit better with the new dispensation thatTom Lane
2009-05-05Minor improvement: avoid assuming that GetLastError value cannot beTom Lane
2009-05-05Make new complaint about unsafe Unicode literals include an error location.Tom Lane
2009-05-05Install an atexit(2) callback that ensures that proc_exit's cleanup processingTom Lane
2009-05-05Install a "dead man switch" to allow the postmaster to detect cases whereTom Lane
2009-05-05Insert CHECK_FOR_INTERRUPTS() calls into btree and hash index scans at theTom Lane
2009-05-05Update comment for _bt_relandgetbuf.Tom Lane
2009-05-05Disable the use of Unicode escapes in string constants (U&'') whenPeter Eisentraut
2009-05-05Avoid integer overflow in the loop that extracts histogram entries fromTom Lane
2009-05-05Make the win32 shared memory code try 10 times instead of one ifMagnus Hagander
2009-05-04Call SetLastError(0) before calling the file mapping functionsMagnus Hagander
2009-05-04Fix missed usage of DLNewElem()Tom Lane
2009-05-04Avoid a memory allocation in the backend startup code, to avoid having to checkAlvaro Herrera
2009-05-03Fix assign_pgstat_temp_directory() to ensure the directory path isTom Lane
2009-05-03Update UTF-8 <--> EUC_KR, JOHAB, UHC mappings.Tatsuo Ishii
2009-05-02Install some simple defenses in postmaster startup to help ensure a usefulTom Lane
2009-05-01When checking for datetime field overflow, we should allow a fractional-secondTom Lane
2009-04-28Improve pull_up_subqueries logic so that it doesn't insert unnecessaryTom Lane
2009-04-28Move SERVER to the right place in the alphabetically sorted keyword list.Heikki Linnakangas
2009-04-25Fix the handling of sub-SELECTs appearing in the arguments of an outer-levelTom Lane
2009-04-24Fix some more 'variable may be used uninitialized' warnings from gcc 4.4.Tom Lane
2009-04-24Move gettext encoding names into encnames.c, so we only have one place to upd...Magnus Hagander
2009-04-23Suppress some 'variable may be used uninitialized' warnings from gcc 4.4.Tom Lane
2009-04-23Don't use the result of strcmp as if it were a boolean.Tom Lane
2009-04-23varstr_cmp and any comparison function that piggybacks on it can returnHeikki Linnakangas
2009-04-23Change the default value of max_prepared_transactions to zero, and addTom Lane
2009-04-22After archive recovery, mark the last WAL segment from the parent timelineHeikki Linnakangas
2009-04-21Remove the long-obsolete homebrew dl*() functions for AIX, in favor of justTom Lane
2009-04-21Fix obsolete cross-reference (this file isn't called alpha.c anymore)Tom Lane
2009-04-19Rethink the idea of having plpgsql depend on parser/gram.h. Aside from theTom Lane
2009-04-19Fix de-escaping checks so that we will reject \000 as well as other invalidlyTom Lane
2009-04-19Fix estimate_num_groups() to not fail on PlaceHolderVars, per report fromTom Lane
2009-04-17Bump disable_cost up from 1e8 to 1e10, per gripe from Kris Jurka.Tom Lane
2009-04-16Fix planner to restore its previous level of intelligence about pushingTom Lane