summaryrefslogtreecommitdiff
path: root/src/backend/commands
Commit message (Expand)AuthorAgeFilesLines
* Use schema search path to find the first matching contraint name for SETBruce Momjian2006-04-271-44/+114
* Back out RESET CONNECTION until there is more discussion.Bruce Momjian2006-04-252-27/+5
* Add RESET CONNECTION, to reset all aspects of a session.Bruce Momjian2006-04-252-5/+27
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-221-14/+14
* Support the syntaxTom Lane2006-04-155-112/+107
* Fix EXPLAIN so that it can drill down through multiple levels of subplanTom Lane2006-04-081-26/+15
* Fix a bunch of problems with domains by making them use special input functionsTom Lane2006-04-052-82/+13
* Modify all callers of datatype input and receive functions so that if theseTom Lane2006-04-041-22/+23
* Clean up WAL/buffer interactions as per my recent proposal. Get rid of theTom Lane2006-03-313-67/+66
* Clean up and document the API for XLogOpenRelation and XLogReadBuffer.Tom Lane2006-03-293-16/+21
* TablespaceCreateDbspace should function normally even on platforms that do notTom Lane2006-03-291-6/+5
* Arrange to emit a description of the current XLOG record as error contextTom Lane2006-03-243-16/+15
* Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane2006-03-232-3/+13
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-1411-248/+122
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-0530-60/+60
* Prevent lazy_space_alloc from making requests that exceed MaxAllocSize,Tom Lane2006-03-041-1/+4
* Make the COPY command return a command tag that includes the number ofTom Lane2006-03-031-2/+18
* Dept. of second thoughts: rejigger the TRUNCATE ... CASCADE patch so thatTom Lane2006-03-031-68/+63
* Add CASCADE option to TRUNCATE. Joachim WielandTom Lane2006-03-031-16/+74
* Attached is a patch that replaces a bunch of places where StringInfosNeil Conway2006-03-011-13/+11
* Allow the syntax CREATE TYPE foo, with no parameters, to permit explicitTom Lane2006-02-281-17/+32
* Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane2006-02-281-2/+9
* Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, inPeter Eisentraut2006-02-271-2/+2
* Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway2006-02-191-1/+5
* Fix bug that allowed any logged-in user to SET ROLE to any other database userTom Lane2006-02-121-2/+4
* Revert patch becaues of locking concerns:Bruce Momjian2006-02-121-78/+3
* I've created a new shared catalog table pg_shdescription to storeBruce Momjian2006-02-124-24/+231
* Skip ambulkdelete scan if there's nothing to delete and the index is notTom Lane2006-02-112-2/+8
* Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAMEBruce Momjian2006-02-111-3/+78
* Revert based on Tom's recommendation:Bruce Momjian2006-02-112-16/+9
* Allow VACUUM to complete faster by avoiding scanning the indexes when noBruce Momjian2006-02-112-9/+16
* Change search for default operator classes so that it examines all opclassesTom Lane2006-02-101-22/+39
* Improve my initial, rather hacky implementation of joins to appendTom Lane2006-02-051-2/+8
* DROP IF EXISTS for ROLE/USER/GROUPAndrew Dunstan2006-02-041-4/+17
* Update random() usage so ranges are inclusive/exclusive as required.Bruce Momjian2006-02-031-10/+3
* Prevent COPY from using newline or carriage return as delimiter or null.Bruce Momjian2006-02-031-1/+20
* Fix ALTER COLUMN TYPE bug: it sometimes tried to drop UNIQUE or PRIMARY KEYTom Lane2006-01-301-9/+37
* Add GRANT ON SEQUENCE syntax to support sequence-only permissions.Bruce Momjian2006-01-211-4/+7
* It turns out that TablespaceCreateDbspace fails badly if a relcache flushTom Lane2006-01-191-29/+25
* Modify pgstats code to reduce performance penalties from oversized stats dataTom Lane2006-01-181-3/+5
* Add a new system view, pg_cursors, that displays the currently availableNeil Conway2006-01-182-7/+12
* Change the parameter_types column of the pg_prepared_statements to beNeil Conway2006-01-161-17/+24
* Document that CREATE OPERATOR CLASS amounts to granting public executeTom Lane2006-01-131-12/+40
* Require the issuer of CREATE TYPE to own the functions mentioned in theTom Lane2006-01-131-1/+25
* Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane2006-01-121-2/+3
* Add a new system view, pg_prepared_statements, that can be used toNeil Conway2006-01-081-5/+137
* Make all command-line options of postmaster and postgres the same. SeePeter Eisentraut2006-01-051-2/+2
* Fix another case in which autovacuum would fail while analyzingTom Lane2006-01-041-1/+9
* Add regression tests for CSV and \., and add automatic quoting of aBruce Momjian2005-12-281-14/+26
* Our code had:Bruce Momjian2005-12-271-454/+258