summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2006-02-11Skip ambulkdelete scan if there's nothing to delete and the index is notTom Lane
2006-02-11Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAMEBruce Momjian
2006-02-11Revert based on Tom's recommendation:Bruce Momjian
2006-02-11Allow VACUUM to complete faster by avoiding scanning the indexes when noBruce Momjian
2006-02-10Change search for default operator classes so that it examines all opclassesTom Lane
2006-02-05Improve my initial, rather hacky implementation of joins to appendTom Lane
2006-02-04DROP IF EXISTS for ROLE/USER/GROUPAndrew Dunstan
2006-02-03Update random() usage so ranges are inclusive/exclusive as required.Bruce Momjian
2006-02-03Prevent COPY from using newline or carriage return as delimiter or null.Bruce Momjian
2006-01-30Fix ALTER COLUMN TYPE bug: it sometimes tried to drop UNIQUE or PRIMARY KEYTom Lane
2006-01-21Add GRANT ON SEQUENCE syntax to support sequence-only permissions.Bruce Momjian
2006-01-19It turns out that TablespaceCreateDbspace fails badly if a relcache flushTom Lane
2006-01-18Modify pgstats code to reduce performance penalties from oversized stats dataTom Lane
2006-01-18Add a new system view, pg_cursors, that displays the currently availableNeil Conway
2006-01-16Change the parameter_types column of the pg_prepared_statements to beNeil Conway
2006-01-13Document that CREATE OPERATOR CLASS amounts to granting public executeTom Lane
2006-01-13Require the issuer of CREATE TYPE to own the functions mentioned in theTom Lane
2006-01-12Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane
2006-01-08Add a new system view, pg_prepared_statements, that can be used toNeil Conway
2006-01-05Make all command-line options of postmaster and postgres the same. SeePeter Eisentraut
2006-01-04Fix another case in which autovacuum would fail while analyzingTom Lane
2005-12-28Add regression tests for CSV and \., and add automatic quoting of aBruce Momjian
2005-12-27Our code had:Bruce Momjian
2005-12-23Allow CREATE/ALTER ROLE PASSWORD NULL to allow restoring the default statePeter Eisentraut
2005-12-14Defend against crash while processing Describe Statement or Describe PortalTom Lane
2005-12-03Tweak indexscan machinery to avoid taking an AccessShareLock on an indexTom Lane
2005-11-29Fix EXPLAIN and EXECUTE commands to pass portal parameters through toTom Lane
2005-11-26Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-22 DROP DATABASE IF EXISTS variantAndrew Dunstan
2005-11-21Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera
2005-11-20Remove the t_datamcxt field of HeapTupleData. This was introduced forTom Lane
2005-11-19DROP objecttype IF EXISTS for the following objects:Andrew Dunstan
2005-11-07R-tree is dead ... long live GiST.Tom Lane
2005-11-04Disregard superuserness when checking to see if a role GRANT wouldTom Lane
2005-11-03Rename the members of CommandDest enum so they don't collide with other uses ofAlvaro Herrera
2005-10-29Message correctionsPeter Eisentraut
2005-10-21Fix EXPLAIN ANALYZE bug noted by Wiebe Cazemier: although we wereTom Lane
2005-10-18A few trivial code cleanups motivated by reading warnings generatedTom Lane
2005-10-17Clean up libpq's pollution of application namespace by renaming theTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-10Use a safer order of operations in dropdb(): rollbackable operations,Tom Lane
2005-10-06Minor API cleanup for async notifications: we can only register theNeil Conway
2005-10-03COPY's test for read-only transaction was backward; it prohibited COPY TOTom Lane
2005-10-03Separate out the VacRUsage stuff as an independent module, in preparationTom Lane
2005-10-03Preserve tuple OIDs during ATRewriteTable. Per gripe from Duncan Crombie.Tom Lane
2005-10-02Change nextval and other sequence functions to specify their sequenceTom Lane
2005-09-24Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane
2005-09-24Suppress signed-vs-unsigned-char warnings.Tom Lane
2005-09-22Take exclusive buffer lock in scan_heap() to eliminate some corner casesTom Lane