summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2011-10-16Teach btree to handle ScalarArrayOpExpr quals natively.Tom Lane
2011-10-15Fix bugs in information_schema.referential_constraints view.Tom Lane
2011-10-14Measure the number of all-visible pages for use in index-only scan costing.Tom Lane
2011-10-14Avoid potential relcache leak in objectaddress.c.Robert Haas
2011-10-13Remove all "traces" of trace_userlocks, because userlocks were removedBruce Momjian
2011-10-12Don't mark auto-generated types as extension members.Tom Lane
2011-10-12Modify RelationGetBufferForTuple() to use a typedef, rather than aBruce Momjian
2011-10-12Throw a useful error message if an extension script file is fed to psql.Tom Lane
2011-10-11Add comment on why pulling data from a "name" index column can't crash.Tom Lane
2011-10-11Generate index-only scan tuple descriptor from the plan node's indextlist.Tom Lane
2011-10-11Consider index-only scans even when there is no matching qual or ORDER BY.Tom Lane
2011-10-11Rearrange the implementation of index-only scans.Tom Lane
2011-10-11Replace hardcoded switch in object_exists() with a lookup table.Robert Haas
2011-10-11Repair breakage in VirtualXactLock.Robert Haas
2011-10-10Mark GUC external_pid_file's default as '' in postgresql.conf, ratherBruce Momjian
2011-10-10Fix ALTER TABLE ONLY .. DROP CONSTRAINT.Robert Haas
2011-10-09Clean up a couple of box gist helper functions.Heikki Linnakangas
2011-10-09Improve index-only scans to avoid repeated access to the index page.Tom Lane
2011-10-08Fix brain fade in cost estimation for index-only scans.Tom Lane
2011-10-08Don't let transform_null_equals=on affect CASE foo WHEN NULL ... constructs.Heikki Linnakangas
2011-10-08Support index-only scans using the visibility map to avoid heap fetches.Tom Lane
2011-10-06Ensure walsenders can be SIGTERMed while in non-walsender codeMagnus Hagander
2011-10-06Add postmaster -C option to query configuration parameters, and haveBruce Momjian
2011-10-06Replace the "New Linear" GiST split algorithm for boxes and points with aHeikki Linnakangas
2011-10-06Improve and simplify CREATE EXTENSION's management of GUC variables.Tom Lane
2011-10-04Improve define_custom_variable's handling of pre-existing settings.Tom Lane
2011-10-04Fix uninitialized-variable bug.Tom Lane
2011-10-04Add sourcefile/sourceline data to EXEC_BACKEND GUC transmission files.Tom Lane
2011-10-04Remember the source GucContext for each GUC parameter.Tom Lane
2011-10-04Use callbacks in SlruScanDirectory for the actual actionAlvaro Herrera
2011-10-04Remove the custom_variable_classes parameter.Tom Lane
2011-10-03ProcedureCreate neglected to record dependencies on default expressions.Tom Lane
2011-10-02Restructure error handling in reading of postgresql.conf.Tom Lane
2011-10-01Improve generated column names for cases involving sub-SELECTs.Tom Lane
2011-09-30Support GiST index support functions that want to cache data across calls.Tom Lane
2011-09-29Fix recursion into previously planned sub-query in examine_simple_variable.Tom Lane
2011-09-29Fix pg_upgrade for EXEC_BACKEND builds (e.g. Windows) by properlyBruce Momjian
2011-09-29Fix index matching for operators with mixed collatable/noncollatable inputs.Tom Lane
2011-09-27Update comments related to the crash-safety of the visibility map.Robert Haas
2011-09-27heap_update() must recheck tuple after unlocking and relocking buffer.Robert Haas
2011-09-27Fix window functions that sort by expressions involving aggregates.Tom Lane
2011-09-27Allow snapshot references to still work during transaction abort.Tom Lane
2011-09-26Update obsolete comments.Robert Haas
2011-09-26Use a fresh copy of query_list when making a second plan in GetCachedPlan.Tom Lane
2011-09-25Avoid unnecessary snapshot-acquisitions in BuildCachedPlan.Tom Lane
2011-09-24Recognize self-contradictory restriction clauses for non-table relations.Tom Lane
2011-09-23Memory barrier support for PostgreSQL.Robert Haas
2011-09-22Make EXPLAIN ANALYZE report the numbers of rows rejected by filter steps.Tom Lane
2011-09-21Fix another bit of unlogged-table-induced breakage.Robert Haas
2011-09-20Suppress "unused function" warning when not HAVE_LOCALE_T.Tom Lane