summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2008-04-06Improve hash_any() to use word-wide fetches when hashing suitably alignedTom Lane
2008-04-05Defend against JOINs having more than 32K columns altogether. We cannotTom Lane
2008-04-04Re-implement division for numeric values using the traditional "schoolbook"Tom Lane
2008-04-04Implement current_query(), that shows the currently executing query.Bruce Momjian
2008-04-04Convert backslash_quote guc to use enum.Magnus Hagander
2008-04-04Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary andMagnus Hagander
2008-04-03Remove heap_release_fetch, which is no longer used anywhere; this simplifiesTom Lane
2008-04-03Teach ANALYZE to distinguish dead and in-doubt tuples, which it formerlyTom Lane
2008-04-02Convert three more guc settings to enum type:Magnus Hagander
2008-04-01Add SPI-level support for executing SQL commands with one-time-use plans,Tom Lane
2008-04-01Fix an oversight I made in a cleanup patch over a year ago:Tom Lane
2008-03-31Apply my original fix for Taiki Yamaguchi's bug report about DISTINCT MAX().Tom Lane
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane
2008-03-27Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-03-26Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera
2008-03-26Separate snapshot management code from tuple visibility code, create aAlvaro Herrera
2008-03-25Simplify and standardize conversions between TEXT datums and ordinary CTom Lane
2008-03-25Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway
2008-03-24When a relation has been proven empty by constraint exclusion, propagate thatTom Lane
2008-03-24Use new errdetail_log() mechanism to provide a less klugy way of reportingTom Lane
2008-03-24Adjust the recent patch for reporting of deadlocked queries so that we reportTom Lane
2008-03-24Add a new ereport auxiliary function errdetail_log(), which works the same asTom Lane
2008-03-23Create a function quote_nullable(), which works the same as quote_literal()Tom Lane
2008-03-22Add server side lo_import(filename, oid) function.Tatsuo Ishii
2008-03-21Remove TypeName struct's timezone flag, which has been write-only storageTom Lane
2008-03-21Report the current queries of all backends involved in a deadlockTom Lane
2008-03-21Get rid of a bunch of #ifdef HAVE_INT64_TIMESTAMP conditionals by inventingTom Lane
2008-03-20Arrange for an explicit cast applied to an ARRAY[] constructor to be appliedTom Lane
2008-03-19Support ALTER TYPE RENAME. Petr JelinekTom Lane
2008-03-18Arrange to "inline" SQL functions that appear in a query's FROM clause,Tom Lane
2008-03-17Enable probes to work with Mac OS X Leopard and other OSes that willPeter Eisentraut
2008-03-17Fix postgres --describe-config for guc enums, breakage noted by Alvaro.Magnus Hagander
2008-03-17Move ProcState definition into sinvaladt.c from sinvaladt.h, since it's notAlvaro Herrera
2008-03-17Fix TransactionIdIsCurrentTransactionId() to use binary search instead ofTom Lane
2008-03-16When creating a large hash index, pre-sort the index entries by estimatedTom Lane
2008-03-16Modify interactions between sinval.c and sinvaladt.c. The code that actuallyAlvaro Herrera
2008-03-16Some cleanups of enum-guc code, per comments from Tom.Magnus Hagander
2008-03-15Change hash index creation so that rather than always establishing exactlyTom Lane
2008-03-14Fix vacuum so that autovacuum is really not cancelled when doing an emergencyAlvaro Herrera
2008-03-13Fix heap_page_prune's problem with failing to send cache invalidationTom Lane
2008-03-11Make TransactionIdIsInProgress check transam.c's single-item XID status cacheTom Lane
2008-03-10Provide a build-time option to store large relations as single files, ratherTom Lane
2008-03-10Bump catversion from guc enum patch, which I forgot. Sorry!Magnus Hagander
2008-03-10Implement enum type for guc parameters, and convert a couple of existingMagnus Hagander
2008-03-10Reduce memory consumption during VACUUM of large relations, by usingTom Lane
2008-03-09Change patternsel() so that instead of switching from a pureTom Lane
2008-03-08Refactor heap_page_prune so that instead of changing item states on-the-fly,Tom Lane
2008-03-07This patch addresses some issues in TOAST compression strategy thatTom Lane
2008-03-04Fix PREPARE TRANSACTION to reject the case where the transaction has dropped aTom Lane