summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2008-04-17Fix a couple of oversights associated with the "physical tlist" optimization:Tom Lane
2008-04-17Re-enable pg_terminate_backend() using SIGTERM. SIGTERM testing stillBruce Momjian
2008-04-16Repair two places where SIGTERM exit could leave shared memory stateTom Lane
2008-04-16Avoid using unnecessary pgwin32_safestat in libpq.Andrew Dunstan
2008-04-15Revert addition of pg_terminate_backend() because of race conditions.Bruce Momjian
2008-04-15Add pg_terminate_backend() to allow terminating only a single session.Bruce Momjian
2008-04-14Push index operator lossiness determination down to GIST/GIN opclassTom Lane
2008-04-13Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane
2008-04-13Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane
2008-04-12Create new routines systable_beginscan_ordered, systable_getnext_ordered,Tom Lane
2008-04-11A quick try at un-breaking the Cygwin build. Whether it needs theTom Lane
2008-04-11Add some debug support code to try to catch future mistakes in the area ofTom Lane
2008-04-10Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane
2008-04-10Create wrapper pgwin32_safestat() and redefine stat() to itMagnus Hagander
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