summaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAgeFilesLines
* Cause EXPLAIN's VERBOSE option to print the target list (output column list)Tom Lane2008-04-181-2/+1
* Fix a couple of oversights associated with the "physical tlist" optimization:Tom Lane2008-04-171-2/+1
* Re-enable pg_terminate_backend() using SIGTERM. SIGTERM testing stillBruce Momjian2008-04-172-2/+5
* Repair two places where SIGTERM exit could leave shared memory stateTom Lane2008-04-163-5/+55
* Avoid using unnecessary pgwin32_safestat in libpq.Andrew Dunstan2008-04-161-2/+5
* Revert addition of pg_terminate_backend() because of race conditions.Bruce Momjian2008-04-153-8/+3
* Add pg_terminate_backend() to allow terminating only a single session.Bruce Momjian2008-04-153-3/+8
* Push index operator lossiness determination down to GIST/GIN opclassTom Lane2008-04-144-365/+362
* Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane2008-04-133-15/+5
* Phase 2 of project to make index operator lossiness be determined at runtimeTom Lane2008-04-131-4/+5
* Create new routines systable_beginscan_ordered, systable_getnext_ordered,Tom Lane2008-04-123-11/+15
* A quick try at un-breaking the Cygwin build. Whether it needs theTom Lane2008-04-111-15/+16
* Add some debug support code to try to catch future mistakes in the area ofTom Lane2008-04-111-6/+13
* Replace "amgetmulti" AM functions with "amgetbitmap", in which the wholeTom Lane2008-04-1011-34/+36
* Create wrapper pgwin32_safestat() and redefine stat() to itMagnus Hagander2008-04-101-1/+14
* Improve hash_any() to use word-wide fetches when hashing suitably alignedTom Lane2008-04-061-2/+2
* Defend against JOINs having more than 32K columns altogether. We cannotTom Lane2008-04-051-1/+2
* Re-implement division for numeric values using the traditional "schoolbook"Tom Lane2008-04-043-5/+10
* Implement current_query(), that shows the currently executing query.Bruce Momjian2008-04-042-2/+5
* Convert backslash_quote guc to use enum.Magnus Hagander2008-04-041-2/+2
* Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary andMagnus Hagander2008-04-041-3/+3
* Remove heap_release_fetch, which is no longer used anywhere; this simplifiesTom Lane2008-04-031-4/+1
* Teach ANALYZE to distinguish dead and in-doubt tuples, which it formerlyTom Lane2008-04-031-2/+2
* Convert three more guc settings to enum type:Magnus Hagander2008-04-022-6/+7
* Add SPI-level support for executing SQL commands with one-time-use plans,Tom Lane2008-04-011-1/+10
* Fix an oversight I made in a cleanup patch over a year ago:Tom Lane2008-04-012-5/+5
* Apply my original fix for Taiki Yamaguchi's bug report about DISTINCT MAX().Tom Lane2008-03-311-1/+4
* Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane2008-03-284-8/+32
* Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane2008-03-2747-404/+299
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-263-14/+17
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-261-6/+6
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-266-68/+106
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-252-8/+10
* Add a new tuplestore API function, tuplestore_putvalues(). This isNeil Conway2008-03-251-1/+3
* When a relation has been proven empty by constraint exclusion, propagate thatTom Lane2008-03-241-1/+6
* Use new errdetail_log() mechanism to provide a less klugy way of reportingTom Lane2008-03-241-2/+3
* Adjust the recent patch for reporting of deadlocked queries so that we reportTom Lane2008-03-241-2/+2
* Add a new ereport auxiliary function errdetail_log(), which works the same asTom Lane2008-03-241-1/+8
* Create a function quote_nullable(), which works the same as quote_literal()Tom Lane2008-03-233-4/+9
* Add server side lo_import(filename, oid) function.Tatsuo Ishii2008-03-223-4/+7
* Remove TypeName struct's timezone flag, which has been write-only storageTom Lane2008-03-211-2/+1
* Report the current queries of all backends involved in a deadlockTom Lane2008-03-211-1/+2
* Get rid of a bunch of #ifdef HAVE_INT64_TIMESTAMP conditionals by inventingTom Lane2008-03-212-29/+32
* Arrange for an explicit cast applied to an ARRAY[] constructor to be appliedTom Lane2008-03-202-5/+15
* Support ALTER TYPE RENAME. Petr JelinekTom Lane2008-03-193-5/+10
* Arrange to "inline" SQL functions that appear in a query's FROM clause,Tom Lane2008-03-183-3/+7
* Enable probes to work with Mac OS X Leopard and other OSes that willPeter Eisentraut2008-03-173-43/+5
* Fix postgres --describe-config for guc enums, breakage noted by Alvaro.Magnus Hagander2008-03-171-1/+7
* Move ProcState definition into sinvaladt.c from sinvaladt.h, since it's notAlvaro Herrera2008-03-171-19/+8
* Fix TransactionIdIsCurrentTransactionId() to use binary search instead ofTom Lane2008-03-171-12/+1